hashiverse-client-web - v0.1.0
    Preparing search index...

    Type Alias HashiverseClientWasmProxy

    HashiverseClientWasmProxy: {
        [K in Exclude<MethodKeys<Bio>, "free" | typeof Symbol.dispose>]: WrapAsync<
            Bio[K],
        >
    } & { dispose(): Promise<void> }

    Async proxy type mirroring every public method on HashiverseClientWasm, with all return types wrapped in Promise. Lifecycle methods (free, Symbol.dispose) are excluded and replaced with a JS-friendly dispose().

    Calls on this proxy are forwarded over MessageChannel RPC to the HashiverseWorker, which invokes the real HashiverseClientWasm method inside its dedicated Web Worker.