Home
last modified time | relevance | path

Searched refs:CameraNativeProps (Results 1 – 12 of 12) sorted by relevance

/expo/packages/expo-camera/build/utils/
H A Dprops.d.ts1 import { CameraNativeProps, CameraType, FlashMode, AutoFocus, WhiteBalance, CameraProps } from '../…
3 type: Record<keyof typeof CameraType, CameraNativeProps['type']>;
4 flashMode: Record<keyof typeof FlashMode, CameraNativeProps['flashMode']>;
5 autoFocus: Record<keyof typeof AutoFocus, CameraNativeProps['autoFocus']>;
6 whiteBalance: Record<keyof typeof WhiteBalance, CameraNativeProps['whiteBalance']>;
8 export declare function convertNativeProps(props?: CameraProps): CameraNativeProps;
9 export declare function ensureNativeProps(props?: CameraProps): CameraNativeProps;
H A Dprops.js.map1CameraNativeProps,\n CameraType,\n FlashMode,\n AutoFocus,\n WhiteBalance,\n CameraProps,\n} …
/expo/packages/expo-camera/src/utils/
H A Dprops.ts4 CameraNativeProps,
15 type: Record<keyof typeof CameraType, CameraNativeProps['type']>;
16 flashMode: Record<keyof typeof FlashMode, CameraNativeProps['flashMode']>;
17 autoFocus: Record<keyof typeof AutoFocus, CameraNativeProps['autoFocus']>;
18 whiteBalance: Record<keyof typeof WhiteBalance, CameraNativeProps['whiteBalance']>;
26 export function convertNativeProps(props?: CameraProps): CameraNativeProps {
31 const nativeProps: CameraNativeProps = {};
44 export function ensureNativeProps(props?: CameraProps): CameraNativeProps {
/expo/packages/expo-camera/build/
H A DExponentCamera.d.ts2 import { CameraNativeProps } from './Camera.types';
3 declare const ExponentCamera: React.ComponentType<CameraNativeProps>;
H A DExponentCamera.web.d.ts2 import { CameraCapturedPicture, CameraNativeProps, CameraPictureOptions } from './Camera.types';
9 declare const ExponentCamera: React.ForwardRefExoticComponent<Pick<CameraNativeProps & {
H A DExponentCamera.js.map1 …om 'react';\n\nimport { CameraNativeProps } from './Camera.types';\n\nconst ExponentCamera: React.…
H A DCamera.types.d.ts472 export type CameraNativeProps = { alias
H A DExponentCamera.web.js.map1CameraNativeProps,\n CameraPictureOptions,\n CameraType,\n} from './Camera.types';\nimport Camer…
H A DCamera.types.js.map1 …ientationChanged) => void;\n};\n\n/**\n * @hidden\n */\nexport type CameraNativeProps = {\n point…
/expo/packages/expo-camera/src/
H A DExponentCamera.ts4 import { CameraNativeProps } from './Camera.types';
6 const ExponentCamera: React.ComponentType<CameraNativeProps> =
H A DExponentCamera.web.tsx8 CameraNativeProps,
27 { type, pictureSize, poster, ...props }: CameraNativeProps & { children?: React.ReactNode },
H A DCamera.types.ts506 export type CameraNativeProps = { alias