rani-motion
Version:
A simple and powerful React animation library with TypeScript support - animated.div style components with accessibility-first approach
12 lines • 413 B
TypeScript
/// <reference types="react" />
interface UseIntersectionObserverOptions {
threshold?: number;
rootMargin?: string;
triggerOnce?: boolean;
}
export declare const useIntersectionObserver: (options?: UseIntersectionObserverOptions) => {
elementRef: import("react").RefObject<HTMLDivElement>;
isIntersecting: boolean;
};
export {};
//# sourceMappingURL=useIntersectionObserver.d.ts.map