File

src/pagination/pagination-model.class.ts

Index

Properties

Properties

currentPage
currentPage: number
Type : number

Tracks the current page.

pageLength
pageLength: number
Type : number

Length of page.

totalDataLength
totalDataLength: number
Type : number

Absolute total number of items needed to paginate.

export class PaginationModel {
	/**
	 * Tracks the current page.
	 *
	 * @type {number}
	 * @memberof PaginationModel
	 */
	currentPage: number;

	/**
	 * Length of page.
	 *
	 * @type {number}
	 * @memberof PaginationModel
	 */
	pageLength: number;

	/**
	 * Absolute total number of items needed to paginate.
	 *
	 * @private
	 * @type {number}
	 * @memberof PaginationModel
	 */
	totalDataLength: number;
}

results matching ""

    No results matching ""