Added the cancelable to the dialogs.d.ts

This commit is contained in:
Nathanael Anderson
2015-11-12 16:51:47 -06:00
parent 1ea6e5897e
commit 73f179d3b6

View File

@ -120,6 +120,12 @@ declare module "ui/dialogs" {
* Gets or sets the dialog message.
*/
message?: string;
/**
* Sets if the Android dialog can be canceled via clicking outside of it
* defaults to true.
*/
cancelable?: boolean;
}
/**