linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
13 lines (12 loc) β’ 456 B
TypeScript
import type { ModalStaticFunctions } from './confirm';
import { modalGlobalConfig } from './confirm';
import OriginModal from './Modal';
import useModal from './useModal';
export type { ModalFuncProps, ModalProps } from './Modal';
declare type ModalType = typeof OriginModal & ModalStaticFunctions & {
useModal: typeof useModal;
destroyAll: () => void;
config: typeof modalGlobalConfig;
};
declare const Modal: ModalType;
export default Modal;