UNPKG

@mantine/hooks

Version:

A collection of 50+ hooks for state and UI management

8 lines (7 loc) 225 B
interface ScrollPosition { x: number; y: number; } declare function scrollTo({ x, y }: Partial<ScrollPosition>): void; export declare function useWindowScroll(): readonly [ScrollPosition, typeof scrollTo]; export {};