@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
8 lines (7 loc) • 331 B
TypeScript
import React from 'react';
import { FlashingCellDefinition } from '../../types';
import { FlexProps } from '../../components/Flex';
export interface FlashingCellStyleProps extends Omit<FlexProps, 'data'> {
data: FlashingCellDefinition;
}
export declare const FlashingCellStyle: React.FunctionComponent<FlashingCellStyleProps>;