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 3a9cf95..adc6378 100644 --- a/src/hypixelApi.ts +++ b/src/hypixelApi.ts @@ -100,7 +100,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']> => { // Send a raw http request to api.hypixel.net, and return the parsed json - let response: typedHypixelApi.Requests[P]['response'] try { response = await typedHypixelApi.request( |