UNPKG

ng-fusion-ui

Version:

Angular data table library!

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