interface AlertDialogOptions {
    buttonText?: string;
    message?: string;
    title?: string;
}

Hierarchy

  • DialogOptions
    • AlertDialogOptions

Properties

buttonText?: string

Text to use on the action button. Defaults to "Done".

message?: string

Message to show on the dialog.

title?: string

Title of the dialog.