glrs
    Preparing search index...

    Type Alias ShellResult

    Captured shell output and exit status returned to extension shell callers.

    type ShellResult = {
        code: number;
        ok: boolean;
        output: string;
        stderr: string;
        stdout: string;
    }
    Index
    code: number
    ok: boolean
    output: string
    stderr: string
    stdout: string