This commit is contained in:
2021-06-27 20:27:03 -05:00
commit cbd4520e12
42 changed files with 1836 additions and 0 deletions

25
Input.d.ts vendored Normal file
View 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];
}