UNPKG

@adaptabletools/adaptable-cjs

Version:

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

12 lines (11 loc) 702 B
import * as React from 'react'; import { AdaptableApi, FlashingCellDefinition } from '../../../types'; type FlashingAlertDurationWizardSectionProps = { readOnly?: boolean; flashingCell?: FlashingCellDefinition; onChange: (data: FlashingCellDefinition) => void; }; export declare const isSettingsValid: (data: FlashingCellDefinition, api: AdaptableApi) => true | "Name is required" | "A Flashing Cell already exists with that name"; export declare const renderFlashingAlertSettingsSummary: (flashingAlert: FlashingCellDefinition) => React.JSX.Element; export declare const FlashingAlertSettingsWizardSection: (props: FlashingAlertDurationWizardSectionProps) => React.JSX.Element; export {};