UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

13 lines (12 loc) 416 B
import * as React from 'react'; import { LegacyButtonType, ButtonProps } from '../button/button'; export interface ActionButtonProps { type?: LegacyButtonType; actionFn?: (...args: any[]) => any | PromiseLike<any>; closeModal: Function; autoFocus?: boolean; prefixCls: string; buttonProps?: ButtonProps; } declare const ActionButton: React.FC<ActionButtonProps>; export default ActionButton;