/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * Represents the highlight state descriptor for Grid items. * The key is the item identifier, and the value can be either a boolean (for whole row highlighting) * or an array of column indices (for specific cell highlighting). */ interface GridHighlightDescriptor { [id: string]: boolean | number[]; } export { GridHighlightDescriptor };