1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/interfaces/Event.ts b/src/util/interfaces/Event.ts
index 6971a61a..28ae0b54 100644
--- a/src/util/interfaces/Event.ts
+++ b/src/util/interfaces/Event.ts
@@ -60,6 +60,7 @@ export interface Event {
event: EVENT;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
data?: any;
+ reconnect_delay?: number;
origin?: string;
}
@@ -848,4 +849,4 @@ export type EVENT =
| "THREAD_MEMBERS_UPDATE"
| CUSTOMEVENTS;
-export type CUSTOMEVENTS = "INVALIDATED" | "RATELIMIT";
+export type CUSTOMEVENTS = "INVALIDATED" | "RATELIMIT" | "SB_SESSION_REMOVE" | "SB_SESSION_CLOSE";
|