UNPKG

256 BTypeScriptView Raw
1import { ElementRef } from '@angular/core';
2import { CapturedNode } from './captured-node';
3export declare class NodeDraggableEvent {
4 captured: CapturedNode;
5 target: ElementRef;
6 constructor(captured: CapturedNode, target: ElementRef);
7}