UNPKG

react-cool-draggable

Version:

Drag-n-drop react library (component) for horizontal and vertical lists.

16 lines (11 loc) 283 B
export type ID = string | number; export type Direction = 'vertical' | 'horizontal'; export type Pointer = { clientX: number; clientY: number; }; export type Coordinates = { x: number; y: number; }; export type DraggableElement = HTMLElement | SVGElement;