UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

12 lines (11 loc) 393 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; buttonProps?: ButtonProps; } declare const ActionButton: React.FC<ActionButtonProps>; export default ActionButton;