no optional

pull/2641/head
Amr Bashir 2 months ago committed by GitHub
parent 7bb541861f
commit 721c1cd04c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -95,11 +95,11 @@ export type MessageDialogDefaultButtons =
*/
export type MessageDialogButtonsYesNoCancel = {
/** The Yes button. */
yes?: string
yes: string
/** The No button. */
no?: string
no: string
/** The Cancel button. */
cancel?: string
cancel: string
}
/**
@ -109,9 +109,9 @@ export type MessageDialogButtonsYesNoCancel = {
*/
export type MessageDialogButtonsOkCancel = {
/** The Ok button. */
ok?: string
ok: string
/** The Cancel button. */
cancel?: string
cancel: string
}
/**
@ -121,7 +121,7 @@ export type MessageDialogButtonsOkCancel = {
*/
export type MessageDialogButtonsOk = {
/** The Ok button. */
ok?: string
ok: string
}
/**

Loading…
Cancel
Save