Files

4 lines
200 B
TypeScript

import { RefObject } from 'react';
declare const useIntersection: (ref: RefObject<HTMLElement>, options: IntersectionObserverInit) => IntersectionObserverEntry | null;
export default useIntersection;