adding all of the boilerplate for managing a room

This commit is contained in:
talksik
2022-06-19 09:18:45 -05:00
parent a9c9092375
commit ebf09d1b64
2 changed files with 116 additions and 14 deletions
+4 -1
View File
@@ -16,9 +16,12 @@ export type MasterConversation = Conversation & {
[userId: string]: {
peer: Peer;
stream?: MediaStream;
tracks?: MediaStreamTrack[];
audioTrack?: MediaStreamTrack;
videoTrack?: MediaStreamTrack;
screenTrack?: MediaStreamTrack;
};
};
isConnectingToRoom?: boolean;
// all of audio clips, links, media, etc.
content?: ContentBlock[];