react-native-vision-camera
Version:
VisionCamera is the fastest and most powerful Camera for react-native.
8 lines (7 loc) • 321 B
text/typescript
/**
* Represents the target mirroring setting for a Camera Output.
* - `'on'`: Mirrors the Camera, e.g. for front Cameras.
* - `'off'`: Doesn't mirror anything.
* - `'auto'`: Automatically mirrors the Camera if the platform recommends it, such as for front Cameras.
*/
export type MirrorMode = 'on' | 'off' | 'auto'