ng2-qgrid
Version:
Angular Grid
15 lines (14 loc) • 459 B
TypeScript
import { ElementRef } from '@angular/core';
import { Command } from 'ng2-qgrid/core/command/command';
import { RootService } from '../../infrastructure/component/root.service';
export declare class DragDirective {
private root;
private elementRef;
data: any;
effect: string;
drag: Command;
area: string;
constructor(root: RootService, elementRef: ElementRef);
onStart(e: DragEvent): boolean;
onEnd(): void;
}