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

    Interface ProcessTableItem

    Process table row.

    interface ProcessTableItem {
        command: string;
        exitCode?: number;
        name: string;
        status: "success" | "failed" | "running" | "stopped";
    }
    Index

    Properties

    command: string
    exitCode?: number
    name: string
    status: "success" | "failed" | "running" | "stopped"