@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
11 lines (10 loc) • 520 B
TypeScript
import * as React from 'react';
import { FlashingCellDefinition } from '../../../types';
type FlashingAlertDurationWizardSectionProps = {
readOnly?: boolean;
flashingCell?: FlashingCellDefinition;
onChange: (data: FlashingCellDefinition) => void;
};
export declare const renderFlashingAlertSettingsSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element;
export declare const FlashingAlertSettingsWizardSection: (props: FlashingAlertDurationWizardSectionProps) => React.JSX.Element;
export {};