UNPKG

@adaptabletools/adaptable

Version:

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

16 lines (15 loc) 687 B
import * as React from 'react'; import { AlertButton } from '../../../AdaptableState/AlertState'; import { AdaptableAlert } from '../../../AdaptableState/Common/AdaptableAlert'; import { AdaptableApi } from '../../../Api/AdaptableApi'; import { AlertFormContext } from '../../../types'; import { AlertType } from '../Utilities/getAlertType'; type AlertButtonsEditorProps = { AlertButtons: AlertButton<AlertFormContext>[]; onChange: (buttons: AlertButton<AlertFormContext>[]) => void; api: AdaptableApi; adaptableAlert: AdaptableAlert; alertType: AlertType; }; export declare const AlertButtonsEditor: (props: AlertButtonsEditorProps) => React.JSX.Element; export {};