UNPKG

react-native-vision-camera

Version:

VisionCamera is the fastest and most powerful Camera for react-native.

10 lines (9 loc) 360 B
/** * Represents the container format of a captured Photo. */ export type PhotoContainerFormat = 'jpeg' | 'heic' | 'dng' | 'tiff' | 'dcm' | 'unknown'; /** * Represents a {@linkcode PhotoContainerFormat} that * can be used to capture Photos in. */ export type TargetPhotoContainerFormat = Extract<PhotoContainerFormat, 'jpeg' | 'heic' | 'dng'> | 'native';