Commit eaebce59 authored by Jikkai Xiao's avatar Jikkai Xiao Committed by GitHub

MessageBox: fix type definition (#12058)

parent f23e45b4
...@@ -2,7 +2,7 @@ import Vue from 'vue' ...@@ -2,7 +2,7 @@ import Vue from 'vue'
import { MessageType } from './message' import { MessageType } from './message'
export type MessageBoxCloseAction = 'confirm' | 'cancel' | 'close' export type MessageBoxCloseAction = 'confirm' | 'cancel' | 'close'
export type MessageBoxData = MessageBoxCloseAction | MessageBoxInputData export type MessageBoxData = MessageBoxInputData
export interface MessageBoxInputData { export interface MessageBoxInputData {
value: string, value: string,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment