UNPKG

@wojtekmaj/react-hooks

Version:

A collection of React Hooks.

9 lines (8 loc) 230 B
type Direction = 'still' | 'left' | 'right'; /** * Returns current scroll left direction. * * @returns {Direction | null} Scroll left direction */ export default function useScrollLeftDirection(): Direction | null; export {};