summary refs log tree commit diff
path: root/src/gateway/util/WebSocket.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/gateway/util/WebSocket.ts')
-rw-r--r--src/gateway/util/WebSocket.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gateway/util/WebSocket.ts b/src/gateway/util/WebSocket.ts
index 833756ff..7869bed0 100644
--- a/src/gateway/util/WebSocket.ts
+++ b/src/gateway/util/WebSocket.ts
@@ -17,8 +17,8 @@
 */
 
 import { Intents, ListenEventOpts, Permissions } from "@spacebar/util";
-import WS from "ws";
 import { Deflate, Inflate } from "fast-zlib";
+import WS from "ws";
 import { Capabilities } from "./Capabilities";
 // import { Client } from "@spacebar/webrtc";
 
@@ -43,4 +43,5 @@ export interface WebSocket extends WS {
 	listen_options: ListenEventOpts;
 	capabilities?: Capabilities;
 	// client?: Client;
+	large_threshold: number;
 }