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