Files
crawlab/frontend/crawlab-ui/typings/interfaces/models/treeNode.d.ts

7 lines
100 B
Go

interface TreeNode<T = any> {
label?: string;
value?: any;
children?: T[];
path?: string;
}