import { RunTimeState } from './RunTimeState'; import { AdaptableBlotterObject } from '../AdaptableBlotterObject'; export interface FlashingCellState extends RunTimeState { FlashingCells?: FlashingCell[]; DefaultUpColor?: string; DefautDownColor?: string; DefaultDuration?: 250 | 500 | 750 | 1000; } export interface FlashingCell extends AdaptableBlotterObject { IsLive: boolean; ColumnId: string; FlashingCellDuration: 250 | 500 | 750 | 1000; UpColor: string; DownColor: string; }