systelab-components
Version:
systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.
17 lines (16 loc) • 365 B
TypeScript
export declare class TreeNode<T = any> {
label?: string;
data?: T;
icon?: string;
status?: string;
expandedIcon?: any;
collapsedIcon?: any;
children?: TreeNode<T>[];
parent?: TreeNode<T>;
leaf?: boolean;
expanded?: boolean;
styleClass?: string;
selectable?: boolean;
isNodeSelected?: boolean;
key?: string;
}