Type alias PaginationMeta

PaginationMeta: {
    currentPage: number;
    itemCount: number;
    itemsPerPage: number;
    totalItems: number;
    totalPages: number;
}

Type declaration

  • currentPage: number

    The current page that the paginator points to

  • itemCount: number

    Number of items in the current page

  • itemsPerPage: number

    The requested number of items per page

  • totalItems: number

    Total count of items in the server

  • totalPages: number

    The total number of pages based on the limit set