/**----------------------------------------------------------------------------------------- * Copyright © 2026 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 * * * ``` */ export type PagerType = 'numeric' | 'input';