react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
13 lines (12 loc) • 605 B
JavaScript
import createHandler from './createHandler';
import { baseGestureHandlerProps, } from './gestureHandlerCommon';
export const rotationHandlerName = 'RotationGestureHandler';
/**
* @deprecated RotationGestureHandler will be removed in the future version of Gesture Handler. Use `Gesture.Rotation()` instead.
*/
// eslint-disable-next-line @typescript-eslint/no-redeclare -- backward compatibility; see description on the top of gestureHandlerCommon.ts file
export const RotationGestureHandler = createHandler({
name: rotationHandlerName,
allowedProps: baseGestureHandlerProps,
config: {},
});