/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Configures the `position` property for the Grid Toolbar Template. [See example](https://www.telerik.com/kendo-angular-ui/components/grid/toolbar/toolbar-template#setting-the-toolbar-position). * * The possible values are: * * `top`—Shows the Toolbar at the top of the Grid. * * `bottom`—Shows the Toolbar at the bottom of the Grid. * * `both`—Shows the Toolbar at the top and bottom of the Grid. * * @example * ```html * * * * * * ``` */ export type ToolbarPosition = 'top' | 'bottom' | 'both';