/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Provides extra configuration for the [`reorderColumn`](https://www.telerik.com/kendo-angular-ui/components/grid/api/gridcomponent#reordercolumn) method. */ export interface ColumnReorderConfig { /** * Indicates if the reordered column is placed before or after the destination index. */ before: boolean; }