UNPKG

@sgnl-pro/react-tree

Version:

A tree view component for React

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