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

5 lines
314 B
TypeScript

import type { DropTargetMonitor } from '../../types/index.js';
import type { DropTargetHookSpec } from '../types.js';
import { DropTargetImpl } from './DropTargetImpl.js';
export declare function useDropTarget<O, R, P>(spec: DropTargetHookSpec<O, R, P>, monitor: DropTargetMonitor<O, R>): DropTargetImpl<O, R, P>;