From 449a214a522be0b29c953f4c2bf201bd225ac21f Mon Sep 17 00:00:00 2001 From: Helloyunho Date: Sun, 19 May 2024 00:49:56 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8A=20feat(core):=20add=20debug=20even?= =?UTF-8?q?ts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit this might be useful in future hmmm --- core/types/gateway/events.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/core/types/gateway/events.ts b/core/types/gateway/events.ts index 27ef153c..8b5d0f50 100644 --- a/core/types/gateway/events.ts +++ b/core/types/gateway/events.ts @@ -119,6 +119,7 @@ export type GatewayEvents = { CLOSED: [number, boolean, boolean]; CONNECTED: []; ERROR: [Event | ErrorEvent]; + DEBUG: [string]; }; export type ShardedGatewayEvents = { [K in keyof GatewayEvents]: [number, ...GatewayEvents[K]];