scp-next
    Preparing search index...

    Interface ExecResult

    Captured result from one remote SSH command.

    interface ExecResult {
        command: string;
        exitCode: number | null;
        signal?: string;
        stderr: string;
        stdout: string;
    }
    Index
    command: string
    exitCode: number | null
    signal?: string
    stderr: string
    stdout: string