useScrollTo.d.ts 218 B

12
  1. import * as React from 'react';
  2. export default function useScrollTo(ulRef: React.RefObject<HTMLUListElement>, value: number | string): [syncScroll: VoidFunction, clearScroll: VoidFunction, isScrolling: () => boolean];