@zerochain/sdk
Version:
The Züs JS SDK is a JavaScript client library that provides a convenient interface for interacting with the Züs Network. It allows developers to perform various operations such as creating and managing allocations, uploading and downloading files, executi
9 lines (8 loc) • 340 B
TypeScript
import { type Config, type GoInstance, type SetIsWasmLoaded } from './bridge';
export declare const getConfig: () => Config;
/**
* Loads the WebAssembly (Wasm) module and runs it within the Go instance.
*
* @param go The Go instance.
*/
export declare function loadWasm(go: GoInstance, setIsWasmLoaded: SetIsWasmLoaded): Promise<void>;