UNPKG

@sgnl-pro/react-tree

Version:

A tree view component for React

13 lines (12 loc) 284 B
export interface ITreeItem { id: string; label: string; children?: ITreeItem[] | null; } export declare enum SelectionType { Child = "child", Parent = "parent", All = "all", None = "none" } export declare type SelectAction = 'click' | 'check';