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]];