UNPKG

@wojtekmaj/react-hooks

Version:

A collection of React Hooks.

9 lines (8 loc) 224 B
type Direction = 'still' | 'up' | 'down'; /** * Returns current scroll top direction. * * @returns {Direction | null} Scroll top direction */ export default function useScrollTopDirection(): Direction | null; export {};