import { AdaptableStyle } from '../../../types'; /** * Defines how a given Cell in AdapTable should be highlighted */ export interface CellHighlightInfo { /** * Id of Column containing Cell */ columnId: string; /** * Primary Key Value of row containing Cell */ primaryKeyValue?: any; /** * Time after which Cell should be unhighlighted */ timeout?: number; /** * Adaptable Style to use in the Cell Highlight */ highlightStyle: AdaptableStyle; }