@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Interface PaginationOptions

    Options for withPagination's placeholder row.

    interface PaginationOptions {
        command?: CommandLike;
        icon?: TreeItemIcon;
        label?: string;
    }
    Index
    command?: CommandLike

    Command run when the row is clicked — pass one and the row becomes clickable, which is what makes pagination work without the caller matching on LOAD_MORE_ID by hand.

    Your handler is responsible for widening the page (raise the pageSize you pass in, or track an offset) and refreshing the parent.

    Icon for the placeholder item.

    a ThemeIcon('ellipsis')

    label?: string

    Label for the placeholder item.

    'Load more…'