UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

13 lines (12 loc) 693 B
import { ApiBase } from '../Implementation/ApiBase'; import { FlashingCellDefinition } from '../../AdaptableState/FlashingCellState'; import { AdaptableFlashingCell } from '../../AdaptableState/Common/AdaptableFlashingCell'; export declare class FlashingCellInternalApi extends ApiBase { /** * Merges a Flashing Cell Definition with default values * @param flashingCellDefinition Flashing Cell Definition to Merge */ mergeFlashingCellDefinitionWithDefaults(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition; getAdaptableFlashingCellFor(primaryKey: string, columnId?: string): AdaptableFlashingCell | null; clearFlashingCellState(): void; }