/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Configures whether a column menu item is initially expanded. * You can set this option for the `columnChooser` and `filter` [`ColumnMenuSettings`]({% slug api_grid_columnmenusettings %}) options. * */ export interface ExpandableColumnMenuItem { /** * Specifies if the expandable column menu item is initially expanded. */ expanded: boolean; }