react-native-gesture-handler
Version:
Declarative API exposing native platform touch and gesture system to React Native
9 lines (8 loc) • 550 B
TypeScript
/// <reference types="react" />
import { PinchGestureHandlerEventPayload } from './GestureHandlerEventPayload';
import { BaseGestureHandlerProps } from './gestureHandlerCommon';
export interface PinchGestureHandlerProps extends BaseGestureHandlerProps<PinchGestureHandlerEventPayload> {
}
export declare const pinchHandlerName = "PinchGestureHandler";
export type PinchGestureHandler = typeof PinchGestureHandler;
export declare const PinchGestureHandler: import("react").ComponentType<PinchGestureHandlerProps & import("react").RefAttributes<any>>;