tushar-ng-drag-drop
Version:
Simple drag and drop for angular
17 lines (16 loc) • 593 B
TypeScript
import { OnInit, EventEmitter } from '@angular/core';
export declare class DragDropComponent implements OnInit {
documentList: any;
documentTypeList: any;
currentDraggableEvent: DragEvent;
onDraggable: EventEmitter<any>;
onLeftDraggableDrop: EventEmitter<any>;
onRightDraggableDrop: EventEmitter<any>;
constructor();
ngOnInit(): void;
onDraggableStart(item: any): void;
onLeftDraggableCopied(item: any): void;
onRightDraggableCopied(item: any): void;
onLeftDrop(event: any): void;
onRightDrop(event: any, item: any): void;
}