Minor changes

This commit is contained in:
2016-11-14 00:34:01 +09:00
parent e6c17a67c3
commit e23f843450
11 changed files with 394 additions and 5 deletions

21
scripts/aqua.ts Normal file
View File

@ -0,0 +1,21 @@
function find(id: string) {
return document.getElementById(id)
}
function get(url: string, body?: Object): Promise<string> {
return new Promise(function(resolve, reject) {
resolve("")
})
}
function post(url: string, body?: Object): Promise<string> {
return new Promise(function(resolve, reject) {
resolve("")
})
}
export {
find,
get,
post
}