UNPKG

@progress/kendo-angular-pager

Version:
19 lines (18 loc) 680 B
/**----------------------------------------------------------------------------------------- * 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`&mdash;Displays buttons with numbers. * * `input`&mdash;Displays an input field for typing the page number. * * @example * ```html * <kendo-pager type="input"> * </kendo-pager> * ``` */ export type PagerType = 'numeric' | 'input';