UNPKG

react-selectable-box

Version:

A React component used hooks that allows you to select elements in the drag area using the mouse

6 lines (5 loc) 255 B
import { SelectableProps } from '../type'; export default function useScroll(scrollSpeed: number | undefined, scrollContainer: SelectableProps['scrollContainer']): { cancelScroll: () => void; smoothScroll: (e: MouseEvent | TouchEvent) => void; };