ant-design/components/modal/index.tsx
3d32a86547 refactor: improve modal static methods type definition (#5090)
* refactor: improve modal static methods type definition

* chore: add exports.

* chore: remove unused import
2017-03-03 11:40:54 +08:00

52 lines
1.1 KiB
TypeScript

import Modal, { ModalFuncProps } from './Modal';
import confirm from './confirm';
import assign from 'object-assign';
export { ModalFuncProps }
Modal.info = function (props: ModalFuncProps) {
const config = assign({}, {
type: 'info',
iconType: 'info-circle',
okCancel: false,
}, props);
return confirm(config);
};
Modal.success = function (props: ModalFuncProps) {
const config = assign({}, {
type: 'success',
iconType: 'check-circle',
okCancel: false,
}, props);
return confirm(config);
};
Modal.error = function (props: ModalFuncProps) {
const config = assign({}, {
type: 'error',
iconType: 'cross-circle',
okCancel: false,
}, props);
return confirm(config);
};
Modal.warning = Modal.warn = function (props: ModalFuncProps) {
const config = assign({}, {
type: 'warning',
iconType: 'exclamation-circle',
okCancel: false,
}, props);
return confirm(config);
};
Modal.confirm = function (props: ModalFuncProps) {
const config = assign({}, {
type: 'confirm',
okCancel: true,
}, props);
return confirm(config);
};
export default Modal;