chore: update node_modules with new binary files and dependencies
- Add new binary files for nodemon, onnxruntime-web, and xenova/transformers - Update various JavaScript and TypeScript files in node_modules - Remove unused files and dependencies - Add new test fixtures and documentation files
This commit is contained in:
9
node_modules/onnxruntime-common/dist/lib/onnx-value.d.ts
generated
vendored
Normal file
9
node_modules/onnxruntime-common/dist/lib/onnx-value.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Tensor } from './tensor';
|
||||
type NonTensorType = never;
|
||||
/**
|
||||
* Type OnnxValue Represents both tensors and non-tensors value for model's inputs/outputs.
|
||||
*
|
||||
* NOTE: currently not support non-tensor
|
||||
*/
|
||||
export type OnnxValue = Tensor | NonTensorType;
|
||||
export {};
|
||||
Reference in New Issue
Block a user