declare module "dialogs" { import promises = require("promises"); /** * The alert() method displays an alert box with a specified message. * @param message Specifies the text to display in the alert box. */ function alert(message: string): promises.Promise; /** * The alert() method displays an alert box with a specified options. * @param options Specifies the options for the alert box. */ function alert(options: AlertOptions): promises.Promise; /** * The confirm() method displays a dialog box with a specified message. * @param message Specifies the text to display in the confirm box. */ function confirm(message: string): promises.Promise; /** * The confirm() method displays a dialog box with a specified message. * @param options Specifies the options for the confirm box. */ function confirm(options: ConfirmOptions): promises.Promise; /** * The prompt() method displays a dialog box that prompts the visitor for input. * @param text The text to display in the dialog box. * @param defaultText The default input value. */ function prompt(text: string, defaultText?: string): void; /** * Provides options for the alert. */ interface AlertOptions { /** * Gets or sets the alert message. */ message: string; /** * Gets or sets the alert title. */ title?: string; /** * Gets or sets the button name. */ buttonName?: string; } /** * Provides options for the alert. */ interface ConfirmOptions { /** * Gets or sets the alert message. */ message: string; /** * Gets or sets the alert title. */ title?: string; /** * Gets or sets the OK button name. */ okButtonName?: string; /** * Gets or sets the Cancel button name. */ cancelButtonName?: string; } }