UNPKG

@etsoo/react

Version:

TypeScript ReactJs UI Independent Framework

13 lines (12 loc) 212 B
/** * Window scroll position */ export interface IScrollPos { x: number; y: number; } /** * Detect window scroll * @returns Scroll location */ export declare const useWindowScroll: () => IScrollPos;