/**----------------------------------------------------------------------------------------- * Copyright © 2025 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`](slug:api_treelist_treelistcomponent#toc-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; }