/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { SortSettings } from './SortSettings'; /** * The props of the HeaderCellProps component. */ /** * @hidden */ export interface HeaderCellProps { /** * The key in which the cell is located. */ key?: any; /** * The column field in which the cell is located. */ field?: string; /** * The title of the column in which the cell is located. */ title?: string; /** * The `click` event handler of the cell. */ onClick?: any; /** * @hidden */ selectionValue?: any; /** * The method for rendering the header cell. */ sortable?: SortSettings; /** * The method for rendering the cell. */ render?: any; /** * The event that is fired when the header cell is clicked. */ onHeadercellclick?: any; }