UNPKG

@rtdui/hooks

Version:

React hooks library base on @mantine/hooks

12 lines (11 loc) 454 B
declare function defaultTrigger(store: React.MutableRefObject<any>, options: Omit<ScrollTriggerOptions, "getTrigger">): boolean; interface ScrollTriggerOptions { getTrigger?: typeof defaultTrigger; target: EventTarget | null; disableHysteresis?: boolean; threshold?: number; direction?: "horizontal" | "vertical "; disabled?: boolean; } export declare function useScrollTrigger(options: ScrollTriggerOptions): boolean; export {};