MessageBox: add missing declaration (#11861)

This commit is contained in:
Jikkai Xiao 2018-07-04 15:43:28 +08:00 committed by GitHub
parent cdee16edd4
commit 899d70da93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -73,6 +73,9 @@ export interface ElMessageBoxOptions {
/** Whether to show a confirm button */
showConfirmButton?: boolean
/** Whether to show a close button */
showClose?: boolean
/** Text content of cancel button */
cancelButtonText?: string