UNPKG

ng2-branchy

Version:

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

11 lines (10 loc) 379 B
import { Subject } from 'rxjs/Rx'; import { CapturedNode } from './captured-node'; import { NodeDraggableEvent } from './draggable.types'; export declare class NodeDraggableService { draggableNodeEvents$: Subject<NodeDraggableEvent>; private capturedNode; captureNode(node: CapturedNode): void; getCapturedNode(): CapturedNode; releaseCapturedNode(): void; }