8 lines
305 B
TypeScript
8 lines
305 B
TypeScript
import OriginModal from './Modal';
|
|
import { ModalStaticFunctions } from './confirm';
|
|
export { ActionButtonProps } from './ActionButton';
|
|
export { ModalProps, ModalFuncProps } from './Modal';
|
|
declare type Modal = typeof OriginModal & ModalStaticFunctions;
|
|
declare const Modal: Modal;
|
|
export default Modal;
|