augment-vir - v31.13.0
    Preparing search index...

    Type Alias ShellOutput

    All output from runShellCommand.

    type ShellOutput = {
        error: undefined | Error;
        exitCode: number | undefined;
        exitSignal: NodeJS.Signals | undefined;
        stderr: string;
        stdout: string;
    }
    Index

    Properties

    error: undefined | Error
    exitCode: number | undefined
    exitSignal: NodeJS.Signals | undefined
    stderr: string
    stdout: string