@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
14 lines (13 loc) • 456 B
TypeScript
import React from 'react';
import { ButtonProps } from '../../ui/Button/interfaces';
import { PopconfirmLocale } from '../../ui/Popconfirm/interfaces';
export interface DeleteActionLocale extends PopconfirmLocale {
title: string;
}
export declare type DeleteActionProps = {
resource: string;
id: string | number;
buttonProps?: ButtonProps;
locale?: DeleteActionLocale;
};
export declare const DeleteAction: React.FC<DeleteActionProps>;