Interface WasiComponentResult

Result of loading a WASI component

interface WasiComponentResult {
    exitCode: Promise<number>;
    instance: Instance;
}

Properties

Properties

exitCode: Promise<number>

Promise that resolves to the exit code

instance: Instance

WebAssembly instance