UNPKG

ng-fusion-ui

Version:

New Angular component library!

8 lines (7 loc) 151 B
export type TreeNode = { label: string; isExpanded: boolean; hasChildren: boolean; children: TreeNode[] | null; data?: unknown; };