4 lines
134 B
TypeScript
4 lines
134 B
TypeScript
import { RefObject } from 'react';
|
|
declare const useScrolling: (ref: RefObject<HTMLElement>) => boolean;
|
|
export default useScrolling;
|