@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
14 lines (13 loc) • 635 B
TypeScript
import * as React from 'react';
import * as PopupRedux from '../../../Redux/ActionsReducers/PopupRedux';
import { UIConfirmation } from '../../../Utilities/Interface/MessagePopups';
import { SimpleButtonProps } from '../../../components/SimpleButton';
import type { Action } from 'redux';
export interface DeleteButtonProps extends SimpleButtonProps {
onConfirmWarning?: (confirmation: UIConfirmation) => PopupRedux.PopupShowConfirmationAction;
ConfirmAction?: Action;
ConfirmationMsg: string;
ConfirmationTitle: string;
onClickAction?: () => void;
}
export declare const ButtonDelete: React.FC<DeleteButtonProps>;