UNPKG

onnxruntime-react-native

Version:
16 lines (14 loc) 502 B
"use strict"; // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. import { NativeModules } from 'react-native'; export const Module = NativeModules.Onnxruntime; if (typeof globalThis.OrtApi === 'undefined') { Module.install(); } export const OrtApi = globalThis.OrtApi ?? new Proxy({}, { get: () => { throw new Error('OrtApi is not initialized. Please make sure Onnxruntime installation is successful.'); } }); //# sourceMappingURL=binding.js.map