EntityListPagination
Home > @backstage/plugin-catalog-react
> EntityListPagination
Signature:
export type EntityListPagination = boolean | {
mode?: 'cursor';
limit?: number;
} | {
mode: 'offset';
limit?: number;
offset?: number;
};