antd
Version:
An enterprise-class UI design language and React components implementation
11 lines (10 loc) • 386 B
TypeScript
import OriginModal from './Modal';
import { ModalStaticFunctions, globalConfig } from './confirm';
export { ActionButtonProps } from './ActionButton';
export { ModalProps, ModalFuncProps } from './Modal';
declare type Modal = typeof OriginModal & ModalStaticFunctions & {
destroyAll: () => void;
config: typeof globalConfig;
};
declare const Modal: Modal;
export default Modal;