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

index e36b4f1dc..8d07dfdfb 100644 --- a/src/webrtc/util/WebRtcWebSocket.ts +++ b/src/webrtc/util/WebRtcWebSocket.ts
@@ -1,7 +1,7 @@ import { WebSocket } from "@spacebar/gateway"; import type { WebRtcClient } from "@spacebarchat/spacebar-webrtc-types"; -export interface WebRtcWebSocket extends WebSocket { +export class WebRtcWebSocket extends WebSocket { type: "guild-voice" | "dm-voice" | "stream"; webRtcClient?: WebRtcClient<WebRtcWebSocket>; }