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:
21
node_modules/onnxruntime-common/dist/lib/backend-impl.d.ts
generated
vendored
Normal file
21
node_modules/onnxruntime-common/dist/lib/backend-impl.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import { Backend } from './backend';
|
||||
/**
|
||||
* Register a backend.
|
||||
*
|
||||
* @param name - the name as a key to lookup as an execution provider.
|
||||
* @param backend - the backend object.
|
||||
* @param priority - an integer indicating the priority of the backend. Higher number means higher priority. if priority
|
||||
* < 0, it will be considered as a 'beta' version and will not be used as a fallback backend by default.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
export declare const registerBackend: (name: string, backend: Backend, priority: number) => void;
|
||||
/**
|
||||
* Resolve backend by specified hints.
|
||||
*
|
||||
* @param backendHints - a list of execution provider names to lookup. If omitted use registered backends as list.
|
||||
* @returns a promise that resolves to the backend.
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
export declare const resolveBackend: (backendHints: readonly string[]) => Promise<Backend>;
|
||||
Reference in New Issue
Block a user