onnxruntime-react-native
Version:
ONNX Runtime bridge for react native
16 lines (14 loc) • 502 B
JavaScript
;
// 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