UNPKG

ng2-tree

Version:

angular2 component for visualizing data that can be naturally represented as a tree

10 lines (9 loc) 255 B
export type NodeEditableEventType = 'blur' | 'keyup'; export declare enum NodeEditableEventAction { Cancel = 0 } export interface NodeEditableEvent { value: string; type: NodeEditableEventType; action?: NodeEditableEventAction; }