UNPKG

@faceless-ui/slider

Version:

A React library for building every kind of slider

9 lines (8 loc) 299 B
import React from 'react'; type Options = { root?: React.MutableRefObject<HTMLElement | null>; rootMargin?: string; threshold?: number; }; export declare const useIntersection: (ref: React.MutableRefObject<HTMLElement | null>, options?: Options) => IntersectionObserverEntry; export {};