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

    Interface RenderJobQueueOptions<TItem>

    Options accepted by renderJobQueue.

    interface RenderJobQueueOptions<TItem extends JobQueueItem = JobQueueItem> {
        activeId?: string;
        characters?: JobQueueCharacters;
        height?: number;
        items: readonly TItem[];
        newestFirst?: boolean;
        summary?: boolean;
        width?: number;
    }

    Type Parameters

    Index

    Properties

    activeId?: string
    characters?: JobQueueCharacters
    height?: number
    items: readonly TItem[]
    newestFirst?: boolean

    Display jobs in reverse input order without mutating items.

    summary?: boolean

    Include the aggregate status line. Defaults to true.

    width?: number