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

    Interface RenderInspectorPanelOptions<TTab, TAction>

    Options accepted by renderInspectorPanel.

    interface RenderInspectorPanelOptions<
        TTab extends InspectorPanelTab = InspectorPanelTab,
        TAction extends InspectorPanelAction = InspectorPanelAction,
    > {
        actions?: readonly TAction[];
        activeActionId?: string;
        activeTabId?: string;
        focusedTabId?: string;
        height?: number;
        metadata?: readonly KeyValueItem[];
        subtitle?: string;
        tabs: readonly TTab[];
        title: string;
        width: number;
    }

    Type Parameters

    Index

    Properties

    actions?: readonly TAction[]
    activeActionId?: string
    activeTabId?: string
    focusedTabId?: string
    height?: number
    metadata?: readonly KeyValueItem[]
    subtitle?: string
    tabs: readonly TTab[]
    title: string
    width: number