UNPKG

@osobh/reactar

Version:

AR Library for React Native and Expo

10 lines (9 loc) 350 B
import React from 'react'; interface GestureHandlerProps { onTap?: () => void; onPinch?: (scale: number) => void; onPan?: (translationX: number, translationY: number) => void; children: React.ReactNode; } export default function GestureHandler({ onTap, onPinch, onPan, children, }: GestureHandlerProps): React.JSX.Element; export {};