UNPKG

@kiwicom/orbit-components

Version:

Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.

13 lines (12 loc) 344 B
/// <reference types="react" /> type UseScroll = (ref: React.RefObject<HTMLElement>) => { isDragging: boolean; clickStartX: number | undefined; scrollStartX: number | undefined; direction: number; momentum: number; speed: number; lastScrollX: number; }; declare const useScroll: UseScroll; export default useScroll;