MCPcopy
hub / github.com/DevCloudFE/ng-devui / ITreeNodeData

Interface ITreeNodeData

devui/tree/tree-factory.class.ts:6–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4 [id: number]: T;
5}
6export interface ITreeNodeData {
7 id?: number | string;
8 parentId?: number | string;
9 title?: string;
10 isOpen?: boolean;
11 data?: any;
12 isParent?: boolean;
13 loading?: boolean;
14 isMatch?: boolean;
15 isHide?: boolean;
16 isActive?: boolean;
17 isChecked?: boolean;
18 disabled?: boolean;
19
20 [prop: string]: any;
21
22 children?: [];
23}
24
25export interface ITreeMap {
26 [index: number]: ITreeNodeData;

Callers

nothing calls this directly

Implementers 1

TreeNodedevui/tree/tree-factory.class.ts

Calls

no outgoing calls

Tested by

no test coverage detected