Merge pull request #6854 from Brooooooklyn/issue/modal-func-props-interface

fix: missing maskClosable property in ModalFuncProps interface
This commit is contained in:
偏右 2017-07-17 16:07:28 +08:00 committed by GitHub
commit 6fe6480bd5

View File

@ -56,6 +56,7 @@ export interface ModalFuncProps {
okText?: string;
cancelText?: string;
iconType?: string;
maskClosable?: boolean;
}
export type ModalFunc = (props: ModalFuncProps) => {
destroy: () => void,