blessed-components - v1.20.0
    Preparing search index...

    Interface CommandLogItem

    One entry in a command execution history.

    interface CommandLogItem {
        command: string;
        duration?: string;
        exitCode?: number;
        id: string;
        retryable?: boolean;
        retry?: CommandLogRetry;
        status: CommandLogStatus;
        timestamp?: string;
    }
    Index

    Properties

    command: string

    Command or action label. This renderer never executes it.

    duration?: string

    Optional elapsed-time label.

    exitCode?: number

    Process exit code, when available.

    id: string

    Stable entry identifier.

    retryable?: boolean

    Whether a retry action is currently available.

    Retry attempt and schedule metadata.

    Execution state.

    timestamp?: string

    Human-readable execution timestamp.