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

    Interface TerminalExitStatus

    Exit status of a terminal command.

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

    Properties

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

    Extension point for implementations

    exitCode?: null | number

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

    signal?: null | string

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