6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
|
export interface ItemData {
|
||
|
_id: string
|
||
|
_name: string
|
||
|
_parent?: string
|
||
|
_type?: string
|
||
|
}
|