Files

6 lines
216 B
TypeScript

export interface UseScrollTriggerOptions {
disableHysteresis?: boolean;
target?: Node | Window | null;
threshold?: number;
}
export default function useScrollTrigger(options?: UseScrollTriggerOptions): boolean;