react-native-vision-camera
Version:
VisionCamera is the fastest and most powerful Camera for react-native.
10 lines (9 loc) • 470 B
TypeScript
import type { CameraController } from '../../specs/CameraController.nitro';
import type { GestureController } from '../../specs/gestures/GestureController.nitro';
interface Props {
controller: CameraController | undefined;
enableNativeTapToFocusGesture: boolean;
enableNativeZoomGesture: boolean;
}
export declare function useGestureControllers({ controller, enableNativeTapToFocusGesture, enableNativeZoomGesture, }: Props): GestureController[];
export {};