mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
7 lines
100 B
Go
7 lines
100 B
Go
interface TreeNode<T = any> {
|
|
label?: string;
|
|
value?: any;
|
|
children?: T[];
|
|
path?: string;
|
|
}
|