interface SpawnState<T extends string | Uint8Array> {
    _promise: Promise<SpawnState<T>>;
    argv: string[];
    loading: boolean;
    proc: Spawn<T>;
    status?: null | number;
    stderr?: string;
    stdout?: T;
    argvPretty(): string;
    errorStringHTML(fullArgv: boolean): string;
    promise(): Promise<SpawnState<T>>;
}

Type Parameters

Properties

_promise: Promise<SpawnState<T>>

The promise that resolves when proc finishes

argv: string[]

Copy of argv passed to useSpawn

loading: boolean

Whether or not the process is still running

proc: Spawn<T>

Process handle returned from cockpit.spawn()

status?: null | number

Exit code of the process

stderr?: string

Output of process printed to stderr

stdout?: T

Output of process printed to stdout

Methods

  • Get HTML formatted error message with exit code and argv if specified

    Parameters

    • fullArgv: boolean

      Print full argv with message

    Returns string