Files
igny8/frontend/node_modules/react-dnd/dist/internals/registration.d.ts
2025-11-09 10:27:02 +00:00

4 lines
384 B
TypeScript

import type { DragDropManager, DragSource, DropTarget, Identifier, SourceType, TargetType, Unsubscribe } from 'dnd-core';
export declare function registerTarget(type: TargetType, target: DropTarget, manager: DragDropManager): [Identifier, Unsubscribe];
export declare function registerSource(type: SourceType, source: DragSource, manager: DragDropManager): [Identifier, Unsubscribe];