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