mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-16 21:00:14 +00:00
* fix bundle for multi-thread, add e2e test and support nodejs * add copyright banner * resolve comments * add comments for isMultiThreadSupported()
11 lines
356 B
TypeScript
11 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;
|