react-native-vision-camera
Version:
VisionCamera is the fastest and most powerful Camera for react-native.
10 lines (9 loc) • 389 B
TypeScript
/**
* Represents the type of an output stream,
* often related to {@linkcode CameraOutput}.
*
* This is used for getting available resolutions for a given
* {@linkcode OutputStreamType} via
* {@linkcode CameraDevice.getSupportedResolutions | CameraDevice.getSupportedResolutions(...)}
*/
export type OutputStreamType = 'photo' | 'video' | 'stream' | 'depth-photo' | 'depth-stream';