Home
last modified time | relevance | path

Searched refs:convertNativeProps (Results 1 – 9 of 9) sorted by relevance

/expo/packages/expo-camera/src/utils/__tests__/
H A Dprops-test.node.ts2 import { convertNativeProps } from '../props';
4 describe(convertNativeProps, () => {
6 expect(convertNativeProps()).toStrictEqual({});
10 convertNativeProps({
25 convertNativeProps({
/expo/packages/expo-camera/build/utils/
H A Dprops.js10 export function convertNativeProps(props) { function
26 const newProps = convertNativeProps(props);
H A Dprops.d.ts8 export declare function convertNativeProps(props?: CameraProps): CameraNativeProps; function
H A Dprops.js.map1convertNativeProps(props?: CameraProps): CameraNativeProps {\n if (!props || typeof props !== 'ob…
/expo/packages/expo-camera/src/utils/
H A Dprops.ts26 export function convertNativeProps(props?: CameraProps): CameraNativeProps { function
45 const newProps = convertNativeProps(props);
/expo/packages/expo-barcode-scanner/build/
H A DBarCodeScanner.js84 const nativeProps = this.convertNativeProps(this.props);
108 convertNativeProps(props) { method in BarCodeScanner
H A DBarCodeScanner.d.ts152 convertNativeProps(props: BarCodeScannerProps): BarCodeScannerProps;
H A DBarCodeScanner.js.map1convertNativeProps(this.props);\n const { onBarCodeScanned } = this.props;\n return (\n …
/expo/packages/expo-barcode-scanner/src/
H A DBarCodeScanner.tsx212 const nativeProps = this.convertNativeProps(this.props);
248 convertNativeProps(props: BarCodeScannerProps) {