@runloop/remote-agents-sdk
    Preparing search index...

    Type Alias CommandExecResponse

    Final buffered result for command/exec.

    type CommandExecResponse = {
        exitCode: number;
        stderr: string;
        stdout: string;
    }
    Index

    Properties

    exitCode: number

    Process exit code.

    stderr: string

    Buffered stderr capture.

    Empty when stderr was streamed via command/exec/outputDelta.

    stdout: string

    Buffered stdout capture.

    Empty when stdout was streamed via command/exec/outputDelta.