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

22 lines
353 B
TypeScript

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