import { ContinousBaseGesture } from './gesture'; import { RotationGestureHandlerEventPayload } from '../RotationGestureHandler'; export class RotationGesture extends ContinousBaseGesture { constructor() { super(); this.handlerName = 'RotationGestureHandler'; } } export type RotationGestureType = InstanceType;