import { ContinousBaseGesture } from './gesture'; import { PinchGestureHandlerEventPayload } from '../PinchGestureHandler'; export class PinchGesture extends ContinousBaseGesture { constructor() { super(); this.handlerName = 'PinchGestureHandler'; } } export type PinchGestureType = InstanceType;