/**----------------------------------------------------------------------------------------- * Copyright © 2025 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`](slug:api_grid_gridcomponent#toc-reordercolumn) method. */ export interface ColumnReorderConfig { /** * Indicates if the reordered column is placed before or after the destination index. */ before: boolean; }