1 | import { ContinousBaseGesture } from './gesture';
|
2 | import type { PinchGestureHandlerEventPayload } from '../GestureHandlerEventPayload';
|
3 | import { GestureUpdateEvent } from '../gestureHandlerCommon';
|
4 | export type PinchGestureChangeEventPayload = {
|
5 | scaleChange: number;
|
6 | };
|
7 | export declare class PinchGesture extends ContinousBaseGesture<PinchGestureHandlerEventPayload, PinchGestureChangeEventPayload> {
|
8 | constructor();
|
9 | onChange(callback: (event: GestureUpdateEvent<PinchGestureHandlerEventPayload & PinchGestureChangeEventPayload>) => void): this;
|
10 | }
|
11 | export type PinchGestureType = InstanceType<typeof PinchGesture>;
|