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

    Type Alias PaginationItem

    PaginationItem:
        | {
            disabled: boolean;
            kind: "control";
            label: string;
            page: number;
            type: "first"
            | "previous"
            | "next"
            | "last";
        }
        | { current: boolean; kind: "page"; label: string; page: number }
        | { kind: "ellipsis"; label: string }

    One rendered pagination target.