jabr - v0.1.2
    Preparing search index...

    Interface RunResult

    The result of running a subprocess: exit code plus captured stdout/stderr.

    interface RunResult {
        code: number;
        stderr: string;
        stdout: string;
    }
    Index

    Properties

    Properties

    code: number

    Process exit code (0 on success).

    stderr: string

    Captured standard error.

    stdout: string

    Captured standard output.