gespenst API - v0.1.0
    Preparing search index...

    Interface WasmerProcessOutput

    Final output and exit status returned by a Wasmer process.

    interface WasmerProcessOutput {
        code: number;
        ok: boolean;
        stderr: string;
        stderrBytes: Uint8Array;
        stdout: string;
        stdoutBytes: Uint8Array;
    }
    Index
    code: number

    Process exit code.

    ok: boolean

    Whether the process exited successfully.

    stderr: string

    Complete captured stderr decoded as UTF-8.

    stderrBytes: Uint8Array

    Complete captured stderr bytes.

    stdout: string

    Complete captured stdout decoded as UTF-8.

    stdoutBytes: Uint8Array

    Complete captured stdout bytes.