UNPKG

react-native-executorch

Version:

An easy way to run AI models in React Native with ExecuTorch

27 lines (22 loc) 767 B
import { Platform } from 'react-native'; import { Spec as ETInstallerInterface } from './NativeETInstaller'; const LINKING_ERROR = `The package 'react-native-executorch' doesn't seem to be linked. Make sure: \n\n` + Platform.select({ ios: "- You have run 'pod install'\n", default: '' }) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo Go\n'; function returnSpecOrThrowLinkingError(spec: any) { return spec ? spec : new Proxy( {}, { get() { throw new Error(LINKING_ERROR); }, } ); } const ETInstallerNativeModule: ETInstallerInterface = returnSpecOrThrowLinkingError(require('./NativeETInstaller').default); export { ETInstallerNativeModule };