SearchPaginationLimitText
Home > @backstage/plugin-search-react
> SearchPaginationLimitText
A page limit text, this function is called with a "{ from, to, page, count }" object.
Signature:
export type SearchPaginationLimitText = (params: {
from: number;
to: number;
page: number;
count: number;
}) => ReactNode;