UNPKG

@progress/kendo-react-grid

Version:

React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package

17 lines (16 loc) 725 B
/** * @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 };