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.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gateway/util/WebSocket.ts b/src/gateway/util/WebSocket.ts

index 09bae2d0..ea6f0701 100644 --- a/src/gateway/util/WebSocket.ts +++ b/src/gateway/util/WebSocket.ts
@@ -23,6 +23,7 @@ import { Capabilities } from "./Capabilities"; import { ZstdCompress } from "zlib"; import { ZstdDecompress } from "node:zlib"; import { Decoder, Encoder } from "@toondepauw/node-zstd"; +import { QoSPayload } from "../opcodes/Heartbeat"; export interface WebSocket extends WS { version: number; @@ -48,4 +49,5 @@ export interface WebSocket extends WS { listen_options: ListenEventOpts; capabilities?: Capabilities; large_threshold: number; + qos?: QoSPayload; }