react-native-vision-camera
Version:
A powerful, high-performance React Native Camera library.
10 lines • 351 B
TypeScript
import type { PhotoFile } from './PhotoFile';
export interface TakeSnapshotOptions {
/**
* Specify a quality for the JPEG encoding of the snapshot.
* @default 100
*/
quality?: number;
}
export type SnapshotFile = Pick<PhotoFile, 'path' | 'width' | 'height' | 'orientation' | 'isMirrored'>;
//# sourceMappingURL=Snapshot.d.ts.map