You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
418 B
12 lines
418 B
import OriginModal from './Modal';
|
|
import { ModalStaticFunctions, modalGlobalConfig } from './confirm';
|
|
import useModal from './useModal';
|
|
export { ModalProps, ModalFuncProps } from './Modal';
|
|
declare type ModalType = typeof OriginModal & ModalStaticFunctions & {
|
|
useModal: typeof useModal;
|
|
destroyAll: () => void;
|
|
config: typeof modalGlobalConfig;
|
|
};
|
|
declare const Modal: ModalType;
|
|
export default Modal;
|