UNPKG

@gzued/antd-compiled

Version:

Pre-bundled Ant Design 4.x and related dependencies for @gzued packages

13 lines (12 loc) 443 B
import type { ModalStaticFunctions } from './confirm'; import { modalGlobalConfig } from './confirm'; import OriginModal from './Modal'; import useModal from './useModal'; export { ModalFuncProps, ModalProps } from './Modal'; type ModalType = typeof OriginModal & ModalStaticFunctions & { useModal: typeof useModal; destroyAll: () => void; config: typeof modalGlobalConfig; }; declare const Modal: ModalType; export default Modal;