persona-community-5/.pnpm-store/v3/files/cc/bf6f34a96798f7da2515b722dc93825611076fad5a3ac0100245540536df32062477313d9f40b058307e254d15a6bd98f9ff34369849a4809760f940a8b317
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

9 lines
223 B
Plaintext

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