File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -95,11 +95,11 @@ export type MessageDialogDefaultButtons =
95
95
*/
96
96
export type MessageDialogButtonsYesNoCancel = {
97
97
/** The Yes button. */
98
- yes ? : string
98
+ yes : string
99
99
/** The No button. */
100
- no ? : string
100
+ no : string
101
101
/** The Cancel button. */
102
- cancel ? : string
102
+ cancel : string
103
103
}
104
104
105
105
/**
@@ -109,9 +109,9 @@ export type MessageDialogButtonsYesNoCancel = {
109
109
*/
110
110
export type MessageDialogButtonsOkCancel = {
111
111
/** The Ok button. */
112
- ok ? : string
112
+ ok : string
113
113
/** The Cancel button. */
114
- cancel ? : string
114
+ cancel : string
115
115
}
116
116
117
117
/**
@@ -121,7 +121,7 @@ export type MessageDialogButtonsOkCancel = {
121
121
*/
122
122
export type MessageDialogButtonsOk = {
123
123
/** The Ok button. */
124
- ok ? : string
124
+ ok : string
125
125
}
126
126
127
127
/**
You can’t perform that action at this time.
0 commit comments