UNPKG

react-native-vision-camera

Version:

A powerful, high-performance React Native Camera library.

39 lines (34 loc) 1.24 kB
// Base Camera Exports export * from './Camera'; export * from './CameraError'; // Types export * from './types/CameraDevice'; export * from './types/CameraProps'; export * from './types/Frame'; export * from './types/Orientation'; export * from './types/OutputOrientation'; export * from './types/PhotoFile'; export * from './types/Snapshot'; export * from './types/PixelFormat'; export * from './types/Point'; export * from './types/VideoFile'; export * from './types/CodeScanner'; // Devices API export * from './devices/getCameraFormat'; export * from './devices/getCameraDevice'; export * from './devices/Templates'; // Hooks export * from './hooks/useCameraDevice'; export * from './hooks/useCameraDevices'; export * from './hooks/useCameraFormat'; export * from './hooks/useCameraPermission'; export * from './hooks/useCodeScanner'; export * from './hooks/useFrameProcessor'; // Frame Processors export * from './frame-processors/runAsync'; export * from './frame-processors/runAtTargetFps'; // DEPRECATED: This will be removed in favour of a CxxTurboModule in the future. export * from './frame-processors/VisionCameraProxy'; // Skia Frame Processors export * from './skia/useSkiaFrameProcessor'; //# sourceMappingURL=index.js.map