summary refs log tree commit diff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/WebSocket.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/util/WebSocket.ts b/src/util/WebSocket.ts

index 41ce8851..10b8348f 100644 --- a/src/util/WebSocket.ts +++ b/src/util/WebSocket.ts
@@ -1,3 +1,4 @@ +import { Intents } from "fosscord-server-util"; import WS, { Server, Data } from "ws"; interface WebSocket extends WS { @@ -7,6 +8,7 @@ interface WebSocket extends WS { compress?: "zlib-stream"; heartbeatTimeout: NodeJS.Timeout; readyTimeout: NodeJS.Timeout; + intents: Intents; } export default WebSocket;