init
This commit is contained in:
25
Input.d.ts
vendored
Normal file
25
Input.d.ts
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* Input Functions
|
||||
* @public
|
||||
* @noSelf
|
||||
*/
|
||||
declare namespace input {
|
||||
|
||||
enum resonse {
|
||||
SUCCESS = 0,
|
||||
PENDING,
|
||||
FAILED
|
||||
}
|
||||
|
||||
enum types {
|
||||
ASCII = 0,
|
||||
ALPHA,
|
||||
ALPHA_NUM,
|
||||
NUM,
|
||||
NUM_DOT,
|
||||
FLOAT
|
||||
}
|
||||
|
||||
function get(title: string, default_value: string, len: int, type: types): [resonse, string];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user