UNPKG

ng2-branchy

Version:

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

11 lines (10 loc) 288 B
import { ElementRef } from '@angular/core'; import { CapturedNode } from './captured-node'; export declare enum NodeDraggableEventAction { Remove = 0, } export interface NodeDraggableEvent { captured: CapturedNode; target: ElementRef; action?: NodeDraggableEventAction; }