@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
8 lines (7 loc) • 408 B
TypeScript
import { type Config, type SetIsWasmLoaded } from './bridge';
import type { GoWasmProxy } from '@/setup/createWasm/createProxy/createProxy';
/**
* Creates a WebAssembly (Wasm) instance and returns a proxy object for accessing SDK methods.
* @returns The proxy object for accessing SDK methods.
*/
export declare function createWasm(config: Config, setIsWasmLoaded: SetIsWasmLoaded): Promise<GoWasmProxy>;