Skip to main content

Static Methods

fromMeta()

Signature

static fromMeta(meta: FromMetaOptions): Paginator

Parameters

type FromMetaOptions = Pick<PaginatorMeta, 'totalItems' | 'itemsPerPage' | 'currentPage'>;

Return Type

Paginator - New instance from meta object

Example

Paginator.fromMeta({
totalItems: 100,
itemsPerPage: 10,
currentPage: 3
});