mcard-js
Version:
MCard - Content-addressable storage with cryptographic hashing, handle resolution, and vector search for Node.js and browsers
10 lines • 314 B
TypeScript
/**
* WASM runtime executor.
*
* Executes WebAssembly modules via wasmtime CLI.
*/
import { Runtime } from './base.js';
export declare class WasmRuntime implements Runtime {
execute(wasmPath: string, context: unknown, config: any, chapterDir: string): Promise<unknown>;
}
//# sourceMappingURL=wasm.d.ts.map