diff options
Diffstat (limited to 'src/hypixelApi.ts')
-rw-r--r-- | src/hypixelApi.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/hypixelApi.ts b/src/hypixelApi.ts index 40a972a..d229bc1 100644 --- a/src/hypixelApi.ts +++ b/src/hypixelApi.ts @@ -104,7 +104,6 @@ export interface HypixelPlayerSocialMedia { /** Send an HTTP request to the Hypixel API */ export let sendApiRequest = async<P extends keyof typedHypixelApi.Requests>(path: P, options: typedHypixelApi.Requests[P]['options']): Promise<typedHypixelApi.Requests[P]['response']['data']> => { // Send a raw http request to api.hypixel.net, and return the parsed json - console.log('requesting', path, options) let response: typedHypixelApi.Requests[P]['response'] try { response = await typedHypixelApi.request( |