@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
19 lines (18 loc) • 405 B
TypeScript
import { AdaptableStyle } from '../../../types';
/**
* Defines how to highlight a set of Rows
*/
export interface RowsHighlightInfo {
/**
* Primary key valuse for the rows to be highlighted
*/
primaryKeyValues: any[];
/**
* Timeout after which the highlight is removed
*/
timeout?: number;
/**
* Highlight style
*/
highlightStyle: AdaptableStyle;
}