@adaptabletools/adaptable-cjs
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
13 lines (12 loc) • 685 B
TypeScript
import * as React from 'react';
import { AlertType } from '../Utilities/getAlertType';
import { AdaptableApi, AlertDefinition } from '../../../types';
export declare const isSettingsValid: (data: AlertDefinition, api: AdaptableApi) => true | "Name is required" | "An Alert already exists with that name";
export declare const renderAlertTypeSummary: (alertType: AlertType) => React.JSX.Element;
type AlertTypeWizardSectionProps = {
onAlertTypeChange: (alertType: AlertType) => void;
alertType: AlertType | null;
onChange: (data: AlertDefinition) => void;
};
export declare const AlertTypeWizardSection: (props: AlertTypeWizardSectionProps) => React.JSX.Element;
export {};