Functions
confirm
Call Signature
function confirm(message: string): Promise<boolean>;Defined in: ui/dialogs/index.d.ts:78
The confirm() method displays a dialog box with a specified message.
Parameters
| Parameter | Type | Description |
|---|---|---|
message | string | Specifies the text to display in the confirm box. |
Returns
Promise<boolean>
Call Signature
function confirm(options: ConfirmOptions): Promise<boolean>;Defined in: ui/dialogs/index.d.ts:84
The confirm() method displays a dialog box with a specified message.
Parameters
| Parameter | Type | Description |
|---|---|---|
options | ConfirmOptions | Specifies the options for the confirm box. |
Returns
Promise<boolean>
- Previous
- booleanConverter
- Next
- CSSType