finished (?)

This commit is contained in:
2021-06-25 20:12:25 -05:00
parent cf00c7c212
commit df29e4d0ef
11 changed files with 150 additions and 150 deletions

View File

@@ -5,6 +5,22 @@
*/
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: int): [int, string];
}