UNPKG

ng2-tree-hackaday

Version:

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

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