UNPKG

@ifed/hook

Version:
10 lines (9 loc) 282 B
import { RefObject } from 'react'; export default function useDraggableScroll(ref: RefObject<HTMLElement>, options?: { direction?: 'vertical' | 'horizontal' | 'both'; }): { onMouseDown: (event: { clientX: number; clientY: number; }) => void; };