/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the cell content type.
 * Used to define which filter component will be rendered for the targeted column,
 * or which built-in editor, when the row is in edit mode.
 */
export type CellContentType = 'text' | 'numeric' | 'boolean' | 'date';
