Speaking indicator for group calls

Co-authored-by: Peter Thatcher <peter@signal.org>
Co-authored-by: Jim Gustafson <jim@signal.org>
Co-authored-by: Josh Perez <60019601+josh-signal@users.noreply.github.com>
This commit is contained in:
Evan Hahn
2022-02-08 12:30:33 -06:00
committed by GitHub
parent cb5131420f
commit 5ce26eb91a
35 changed files with 482 additions and 42 deletions

View File

@@ -65,6 +65,7 @@ type ActiveGroupCallType = ActiveCallBaseType & {
groupMembers: Array<Pick<ConversationType, 'id' | 'firstName' | 'title'>>;
peekedParticipants: Array<ConversationType>;
remoteParticipants: Array<GroupCallRemoteParticipantType>;
speakingDemuxIds: Set<number>;
};
export type ActiveCallType = ActiveDirectCallType | ActiveGroupCallType;