mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00
22 lines
417 B
TypeScript
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";
|
|
} |