UNPKG

react-use-gesture

Version:

React hook for receiving gestures https://use-gesture.netlify.app

11 lines (10 loc) 404 B
import { WheelEvent } from 'react'; import CoordinatesRecognizer from './CoordinatesRecognizer'; export declare class WheelRecognizer extends CoordinatesRecognizer<'wheel'> { readonly ingKey = "wheeling"; readonly stateKey = "wheel"; debounced: boolean; handleEvent: (event: React.WheelEvent | WheelEvent) => void; onEnd: () => void; addBindings(bindings: any): void; }