Interface MessageDialogOptions

interface MessageDialogOptions {
    Buttons: undefined | Button[];
    Detached: undefined | boolean;
    Message: undefined | string;
    Title: undefined | string;
}

Properties

Buttons: undefined | Button[]

Array of button options to show in the dialog.

Detached: undefined | boolean

True if the dialog should appear detached from the main window (if applicable).

Message: undefined | string

The main message to show in the dialog.

Title: undefined | string

The title of the dialog window.

Generated using TypeDoc