Files
NativeScript/ui/dialogs/dialogs-common.ts
2014-06-09 17:13:00 +03:00

21 lines
333 B
TypeScript

export var STRING = "string",
PROMPT = "Prompt",
CONFIRM = "Confirm",
ALERT = "Alert",
OK = "OK",
CANCEL = "Cancel";
/**
* Defines the input type for prompt dialog.
*/
export enum InputType {
/**
* Plain text input type.
*/
PlainText,
/**
* Password input type.
*/
Password,
}