@progress/kendo-angular-pager
Version:
Kendo UI Angular Pager
19 lines (18 loc) • 680 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the type of the `Pager`.
*
* The available values are:
* * `numeric`—Displays buttons with numbers.
* * `input`—Displays an input field for typing the page number.
*
* @example
* ```html
* <kendo-pager type="input">
* </kendo-pager>
* ```
*/
export type PagerType = 'numeric' | 'input';