ngx-drag-drop
Version:
Angular directives using the native HTML Drag And Drop API
14 lines (13 loc) • 625 B
TypeScript
import { OnDestroy, OnInit } from '@angular/core';
import { DndDraggableDirective } from './dnd-draggable.directive';
import { DndEvent } from './dnd-utils';
import * as i0 from "@angular/core";
export declare class DndHandleDirective implements OnInit, OnDestroy {
draggable: boolean;
dndDraggableDirective: DndDraggableDirective;
ngOnInit(): void;
ngOnDestroy(): void;
onDragEvent(event: DndEvent): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DndHandleDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<DndHandleDirective, "[dndHandle]", never, {}, {}, never, never, true, never>;
}