Files
NativeScript/ui/dialogs/dialogs-common.ts
2015-03-03 10:34:40 +02:00

22 lines
417 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 module inputType {
/**
* Plain text input type.
*/
export var text: string = "text";
/**
* Password input type.
*/
export var password: string = "password";
}