| 4 | [id: number]: T; |
| 5 | } |
| 6 | export 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 | |
| 25 | export interface ITreeMap { |
| 26 | [index: number]: ITreeNodeData; |
nothing calls this directly
no outgoing calls
no test coverage detected