aboutsummaryrefslogtreecommitdiff
path: root/src/hypixel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/hypixel.ts')
-rw-r--r--src/hypixel.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hypixel.ts b/src/hypixel.ts
index b0bcf03..979b57f 100644
--- a/src/hypixel.ts
+++ b/src/hypixel.ts
@@ -28,7 +28,7 @@ export interface ApiOptions {
}
/** Sends an API request to Hypixel and cleans it up. */
-export async function sendCleanApiRequest({ path, args }, included?: Included[], options?: ApiOptions) {
+export async function sendCleanApiRequest({ path, args }, included?: Included[], options?: ApiOptions): Promise<any> {
const key = await chooseApiKey()
const rawResponse = await sendApiRequest({ path, key, args })
if (rawResponse.throttled) {
@@ -43,7 +43,7 @@ export async function sendCleanApiRequest({ path, args }, included?: Included[],
-async function cleanResponse({ path, data }: { path: string, data: HypixelResponse }, options: ApiOptions) {
+async function cleanResponse({ path, data }: { path: string, data: HypixelResponse }, options: ApiOptions): Promise<any> {
// Cleans up an api response
switch (path) {
case 'player': return await cleanPlayerResponse(data.player)