Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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[];