UNPKG

expo-camera

Version:

A React component that renders a preview for the device's either front or back camera. Camera's parameters like zoom, auto focus, white balance and flash mode are adjustable. With expo-camera, one can also take photos and record videos that are saved to t

9 lines 509 B
import { CameraNativeProps, CameraType, FlashMode, CameraViewProps } from '../Camera.types'; export declare const ConversionTables: { type: Record<keyof CameraType, CameraNativeProps['facing']>; flash: Record<keyof FlashMode, CameraNativeProps['flashMode']>; [prop: string]: unknown; }; export declare function convertNativeProps(props?: CameraViewProps): CameraNativeProps; export declare function ensureNativeProps(props?: CameraViewProps): CameraNativeProps; //# sourceMappingURL=props.d.ts.map