Files
coopgo/node_modules/react-dnd/lib/hooks/useDrag/useDragSource.d.ts
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

6 lines
356 B
TypeScript

import { Connector } from '../../internals';
import { DragSourceMonitor } from '../../types';
import { DragSourceHookSpec } from '../types';
import { DragSourceImpl } from './DragSourceImpl';
export declare function useDragSource<O, R, P>(spec: DragSourceHookSpec<O, R, P>, monitor: DragSourceMonitor<O, R>, connector: Connector): DragSourceImpl<O, R, P>;