UNPKG

@ng-dnd/core

Version:

Drag and Drop for Angular

9 lines (8 loc) 294 B
import { MonitorBase } from './monitor-base'; /** * The monitor available inside {@link DragLayer#listen}. */ export interface DragLayerMonitor<Item = any> extends MonitorBase<Item> { /** `true` if there is a drag operation in progress, `false` otherwise. */ isDragging(): boolean; }