Agent Client Protocol - v0.5.1
    Preparing search index...

    Interface WaitForTerminalExitResponse

    Response containing the exit status of a terminal command.

    interface WaitForTerminalExitResponse {
        _meta?: { [k: string]: unknown };
        exitCode?: number | null;
        signal?: string | null;
    }
    Index

    Properties

    _meta?: { [k: string]: unknown }

    Extension point for implementations

    exitCode?: number | null

    The process exit code (may be null if terminated by signal).

    signal?: string | null

    The signal that terminated the process (may be null if exited normally).