mirror of
https://github.com/spacebarchat/server.git
synced 2026-09-15 17:25:37 +00:00
8 lines
275 B
TypeScript
8 lines
275 B
TypeScript
import { WebSocket } from "@spacebar/gateway";
|
|
import type { WebRtcClient } from "@spacebarchat/spacebar-webrtc-types";
|
|
|
|
export interface WebRtcWebSocket extends WebSocket {
|
|
type: "guild-voice" | "dm-voice" | "stream";
|
|
webRtcClient?: WebRtcClient<WebRtcWebSocket>;
|
|
}
|