@runno/wasi
    Preparing search index...

    Type Alias WASIContextOptions

    type WASIContextOptions = {
        args: string[];
        debug: DebugFn;
        env: Record<string, string>;
        fs: WASIFS;
        isTTY: boolean;
        stderr: (err: string) => void;
        stdin: (maxByteLength: number) => string | null;
        stdout: (out: string) => void;
    }
    Index

    Properties

    args: string[]
    debug: DebugFn
    env: Record<string, string>
    fs: WASIFS
    isTTY: boolean
    stderr: (err: string) => void
    stdin: (maxByteLength: number) => string | null
    stdout: (out: string) => void