UNPKG

577 BTypeScriptView Raw
1/// <reference types="react" />
2import { RotationGestureHandlerEventPayload } from './GestureHandlerEventPayload';
3import { BaseGestureHandlerProps } from './gestureHandlerCommon';
4export interface RotationGestureHandlerProps extends BaseGestureHandlerProps<RotationGestureHandlerEventPayload> {
5}
6export declare const rotationHandlerName = "RotationGestureHandler";
7export type RotationGestureHandler = typeof RotationGestureHandler;
8export declare const RotationGestureHandler: import("react").ComponentType<RotationGestureHandlerProps & import("react").RefAttributes<any>>;