Raise Hand in Group Calls
This commit is contained in:
parent
45aeaeefd4
commit
d6db3f7943
33 changed files with 1050 additions and 51 deletions
|
@ -96,6 +96,7 @@ export type ActiveGroupCallType = ActiveCallBaseType & {
|
|||
groupMembers: Array<Pick<ConversationType, 'id' | 'firstName' | 'title'>>;
|
||||
isConversationTooBigToRing: boolean;
|
||||
peekedParticipants: Array<ConversationType>;
|
||||
raisedHands: Set<number>;
|
||||
remoteParticipants: Array<GroupCallRemoteParticipantType>;
|
||||
remoteAudioLevels: Map<number, number>;
|
||||
};
|
||||
|
@ -158,6 +159,7 @@ export type GroupCallRemoteParticipantType = ConversationType & {
|
|||
demuxId: number;
|
||||
hasRemoteAudio: boolean;
|
||||
hasRemoteVideo: boolean;
|
||||
isHandRaised: boolean;
|
||||
presenting: boolean;
|
||||
sharingScreen: boolean;
|
||||
speakerTime?: number;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue