/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ColumnMenuFilterBaseProps } from './ColumnMenuFilterBaseProps'; import { ColumnMenuSortBaseProps } from './ColumnMenuSortBaseProps'; /** * The props which the ColumnMenu passes to its children. */ export interface ColumnMenuProps extends ColumnMenuFilterBaseProps, ColumnMenuSortBaseProps { /** * The key of the column menu. */ key?: any; /** * The method for rendering the column menu. */ render?: any; /** * The opened column menu. */ opened?: boolean; /** * The method that will be called to close the column menu. */ onClose?: Function; }