@progress/kendo-angular-pager
Version:
Kendo UI Angular Pager
16 lines (15 loc) • 712 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
export interface PageSizeItem {
/**
* Specifies the text that represents each available option in the page sizes dropdown list.
*/
text: string;
/**
* Specifies the numeric value that you use as page size.
* When you set the value to `all`, the page size becomes the total number of items.
*/
value: number | 'all';
}