Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

useIntersectionObserver.d.ts 431B

12345678
  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. */
  8. export default function useIntersectionObserver<TElement extends Element>(element: TElement | null | undefined, { threshold, root, rootMargin }?: IntersectionObserverInit): IntersectionObserverEntry[];