UNPKG

mcard-js

Version:

MCard - Content-addressable storage with cryptographic hashing, handle resolution, and vector search for Node.js and browsers

10 lines 328 B
/** * Binary runtime executor. * * Executes compiled binaries (Rust, C) via subprocess. */ import { Runtime } from './base.js'; export declare class BinaryRuntime implements Runtime { execute(binaryPath: string, context: unknown, config: any, chapterDir: string): Promise<unknown>; } //# sourceMappingURL=binary.d.ts.map