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