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