import { registerAction, pinchAction } from '@use-gesture/core/actions' import { UserPinchConfig, Handler, EventTypes } from '@use-gesture/core/types' import { useRecognizers } from './useRecognizers' /** * Pinch hook. * * @param {Handler<'pinch'>} handler - the function fired every time the pinch gesture updates * @param {UserPinchConfig} config - the config object including generic options and pinch options */ export function usePinch( handler: Handler<'pinch', EventType>, config?: Config ) { registerAction(pinchAction) return useRecognizers({ pinch: handler }, config || {}, 'pinch') }