react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
17 lines • 1.02 kB
TypeScript
import type { BaseGestureHandlerProps } from './gestureHandlerCommon';
import type { RotationGestureHandlerEventPayload } from './GestureHandlerEventPayload';
/**
* @deprecated RotationGestureHandler will be removed in the future version of Gesture Handler. Use `Gesture.Rotation()` instead.
*/
export interface RotationGestureHandlerProps extends BaseGestureHandlerProps<RotationGestureHandlerEventPayload> {
}
export declare const rotationHandlerName = "RotationGestureHandler";
/**
* @deprecated RotationGestureHandler will be removed in the future version of Gesture Handler. Use `Gesture.Rotation()` instead.
*/
export type RotationGestureHandler = typeof RotationGestureHandler;
/**
* @deprecated RotationGestureHandler will be removed in the future version of Gesture Handler. Use `Gesture.Rotation()` instead.
*/
export declare const RotationGestureHandler: import("react").ComponentType<RotationGestureHandlerProps & import("react").RefAttributes<any>>;
//# sourceMappingURL=RotationGestureHandler.d.ts.map