| Current Path : /home/emeraadmin/www/node_modules/dnd-core/lib/ |
| Current File : /home/emeraadmin/www/node_modules/dnd-core/lib/DragDropManagerImpl.d.ts |
import { Action } from 'redux';
import { Backend, DragDropActions, DragDropMonitor, DragDropManager, HandlerRegistry } from './interfaces';
export declare class DragDropManagerImpl implements DragDropManager {
private store;
private monitor;
private backend;
private isSetUp;
constructor(debugMode?: boolean);
receiveBackend(backend: Backend): void;
getMonitor(): DragDropMonitor;
getBackend(): Backend;
getRegistry(): HandlerRegistry;
getActions(): DragDropActions;
dispatch(action: Action<any>): void;
private handleRefCountChange;
}