17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
import { TreeDataNode } from '@zhst/meta';
|
|
import BoxTree from './boxTree';
|
|
|
|
export interface TreeData extends TreeDataNode {
|
|
children?: TreeDataNode['children'] & {
|
|
isCamera?: boolean
|
|
/**
|
|
* 0-失败 1-成功 2-进行中 3-未知
|
|
*/
|
|
status?: '0' | '1' | '2' | '3'
|
|
}[]
|
|
}
|
|
|
|
export type { BoxTreeProps } from './boxTree'
|
|
|
|
export default BoxTree;
|