@runno/wasi
    Preparing search index...

    Type Alias WASIXContextOptions

    type WASIXContextOptions = {
        args: string[];
        clock?: ClockProvider;
        debug?: DebugFn;
        env: Record<string, string>;
        fs: WASIFS;
        futex?: FutexProvider;
        isTTY: boolean;
        proc?: ProcProvider;
        random?: RandomProvider;
        signals?: SignalsProvider;
        sockets?: SocketsProvider;
        stderr: (err: string) => void;
        stdin: (maxByteLength: number) => string | null;
        stdout: (out: string) => void;
        threads?: ThreadsProvider;
        tty?: TTYProvider;
    }
    Index

    Properties

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