mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-08 10:43:38 +00:00
9 lines
223 B
TypeScript
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[];
|
|
};
|