UNPKG

@gravitywelluk/react-hooks

Version:
11 lines (10 loc) 292 B
import * as React from "react"; interface UseScrollPositionResponse { x: number | undefined; y: number | undefined; } /** * Scroll position hook */ export declare const useScrollPosition: (element?: React.RefObject<HTMLElement> | undefined) => UseScrollPositionResponse; export {};