All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
7 lines
244 B
TypeScript
7 lines
244 B
TypeScript
import { DragLayerMonitor } from 'react-dnd';
|
|
/**
|
|
* useDragLayer Hook
|
|
* @param collector The property collector
|
|
*/
|
|
export declare function useDragLayer<CollectedProps>(collect: (monitor: DragLayerMonitor) => CollectedProps): CollectedProps;
|