type MessageDialogOptions.DialogType
Type definition for different types of dialogs that may be presented to the user.
type DialogType =
| "error"
| "warning"
| "info"
| "success"
| "question"
| undefined;
Notes
- Not all types may be used by modal builders or platforms to display specific versions of message dialogs.
Related
class MessageDialogOptions
A representation of the contents of an alert or confirm dialog.type
Type of dialog to be presented.
