/** Callback function when closed with the message instance as the parameter */
onClose?: CloseEventHandler
}
exportinterfaceElMessage{
/** Show an info message */
(text: string):ElMessageComponent
/** Show message */
(options: ElMessageOptions):ElMessageComponent
/** Show a success message */
success(text: string):ElMessageComponent
/** Show a warning message */
warning(text: string):ElMessageComponent
/** Show an info message */
info(text: string):ElMessageComponent
/** Show an error message */
error(text: string):ElMessageComponent
}
declaremodule'vue/types/vue'{
interfaceVue{
/** Used to show feedback after an activity. The difference with Notification is that the latter is often used to show a system level passive notification. */