create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
13 lines (9 loc) • 366 B
text/typescript
import { ContinousBaseGesture } from './gesture';
import { PinchGestureHandlerEventPayload } from '../PinchGestureHandler';
export class PinchGesture extends ContinousBaseGesture<PinchGestureHandlerEventPayload> {
constructor() {
super();
this.handlerName = 'PinchGestureHandler';
}
}
export type PinchGestureType = InstanceType<typeof PinchGesture>;