volleyball-dev-frontend/node_modules/react-remove-scroll/dist/es2019/pinchAndZoom.d.ts
2025-06-02 16:42:16 +00:00

9 lines
223 B
TypeScript

import { Touch } from 'react';
export declare const pinchOrZoom: (event: TouchEvent, cache: Record<number, Touch>) => false | {
action: string;
coords?: undefined;
} | {
action: string;
coords: number[];
};