UNPKG

potentio

Version:

Unstyled & accessible knob primitive for React and Vue

9 lines (7 loc) 244 B
import { Ref } from 'vue'; export interface WheelState { deltaY: number; deltaX: number; event: WheelEvent; } export declare function useWheel(elementRef: Ref<HTMLElement | undefined>, callback: (state: WheelState) => void): void;