UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

20 lines (19 loc) 597 B
import * as React from 'react'; import type { ButtonProps, LegacyButtonType } from '../button/button'; export interface ActionButtonProps { type?: LegacyButtonType; actionFn?: (...args: any[]) => any | PromiseLike<any>; close?: Function; autoFocus?: boolean; prefixCls: string; buttonProps?: ButtonProps; emitEvent?: boolean; quitOnNullishReturnValue?: boolean; children?: React.ReactNode; /** * Do not throw if is await mode */ isSilent?: () => boolean; } declare const ActionButton: React.FC<ActionButtonProps>; export default ActionButton;