@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) • 393 B
TypeScript
import { AdaptableStyle } from '../../../types';
/**
* Define how to highlight a Row
*/
export interface RowHighlightInfo {
/**
* Primary key value for the row to be highlighted
*/
primaryKeyValue: any;
/**
* Timeout after which Row should be unhighlighted
*/
timeout?: number;
/**
* Highlight style
*/
highlightStyle: AdaptableStyle;
}