UNPKG

react-native-vision-camera

Version:

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

19 lines (17 loc) 379 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'