react-native-vision-camera
Version:
VisionCamera is the fastest and most powerful Camera for react-native.
10 lines (9 loc) • 360 B
TypeScript
/**
* 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';