From 7c490b49ca8984d38b7fd47c35a8256a0c7e7e3b Mon Sep 17 00:00:00 2001 From: Yuzu Date: Fri, 19 Aug 2022 11:53:17 -0500 Subject: [PATCH] fix: remove anys --- packages/core/src/biscuit.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/core/src/biscuit.ts b/packages/core/src/biscuit.ts index a1d7b6a..cdf9d22 100644 --- a/packages/core/src/biscuit.ts +++ b/packages/core/src/biscuit.ts @@ -9,6 +9,7 @@ import type { GatewayIntents, Localization, Snowflake, + DiscordGetGatewayBot, } from '@biscuitland/api-types'; import { ApplicationCommandTypes, GatewayOpcodes } from '@biscuitland/api-types'; @@ -293,7 +294,7 @@ export class Session { */ async start(): Promise { - const nonParsed = await this.rest.get('/gateway/bot'); + const nonParsed = await this.rest.get('/gateway/bot'); this.ws.options.gatewayBot = { url: nonParsed.url,