src/pagination/pagination-model.class.ts
Properties |
|
currentPage |
Type : number
|
Default value : 1
|
Defined in src/pagination/pagination-model.class.ts:5
|
Tracks the current page. |
Optional pageLength |
Type : number
|
Default value : 10
|
Defined in src/pagination/pagination-model.class.ts:11
|
Length of page. |
totalDataLength |
Type : number
|
Default value : 0
|
Defined in src/pagination/pagination-model.class.ts:16
|
Absolute total number of items needed to paginate. |
export class PaginationModel {
/**
* Tracks the current page.
*/
currentPage = 1;
/**
* Length of page.
*/
/* tslint:disable-next-line*/
pageLength? = 10;
/**
* Absolute total number of items needed to paginate.
*/
totalDataLength = 0;
}