UNPKG

@platform/react

Version:

React refs and helpers.

13 lines (12 loc) 276 B
export declare type DragPosition = { x: number; y: number; }; export declare type IDragPositionEvent = { type: 'DRAG' | 'COMPLETE'; client: DragPosition; screen: DragPosition; element: DragPosition; delta: DragPosition; start: DragPosition; };