FrontPastel/node_modules/@mui/material/useScrollTrigger/useScrollTrigger.d.ts

8 lines
211 B
TypeScript
Raw Normal View History

2024-04-17 13:55:11 +00:00
export interface UseScrollTriggerOptions {
disableHysteresis?: boolean;
target?: Node | Window;
threshold?: number;
}
export default function useScrollTrigger(options?: UseScrollTriggerOptions): boolean;