Interface Wasm

Interface for WebAssembly management functionality

interface Wasm {
    loadEmscripten(path: string): Promise<void>;
    loadWasm(path: string): Promise<{ instance: Instance; module: Module }>;
}

Methods

  • Load an emscripten JS file compiled using -sSINGLE_FILE

    Parameters

    • path: string

      Path to the emscripten JS file

    Returns Promise<void>