All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
5 lines
289 B
TypeScript
5 lines
289 B
TypeScript
import { DropTargetMonitor } from '../../types';
|
|
import { DropTargetHookSpec } from '../types';
|
|
import { DropTargetImpl } from './DropTargetImpl';
|
|
export declare function useDropTarget<O, R, P>(spec: DropTargetHookSpec<O, R, P>, monitor: DropTargetMonitor<O, R>): DropTargetImpl<O, R, P>;
|