tasq/node_modules/onnxruntime-web/lib/wasm/binding/ort-wasm-threaded.d.ts

12 lines
356 B
TypeScript

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
import {OrtWasmModule} from './ort-wasm';
export interface OrtWasmThreadedModule extends OrtWasmModule {
PThread?: {terminateAllThreads(): void};
}
declare const moduleFactory: EmscriptenModuleFactory<OrtWasmThreadedModule>;
export default moduleFactory;