UNPKG

431 BTypeScriptView Raw
1/**
2 * Setup an [`IntersectionObserver`](https://developer.mozilla.org/en-US/docs/Web/API/IntersectionObserver) on
3 * a DOM Element.
4 *
5 * @param element The DOM element to observe
6 * @param init IntersectionObserver options
7 */
8export default function useIntersectionObserver<TElement extends Element>(element: TElement | null | undefined, { threshold, root, rootMargin }?: IntersectionObserverInit): IntersectionObserverEntry[];