Track acceptedTime during call, fix call screen duration

This commit is contained in:
Jamie Kyle
2023-09-20 07:00:01 -07:00
committed by GitHub
parent 95b0f67a47
commit bc67d421ab
8 changed files with 92 additions and 64 deletions

View File

@@ -32,14 +32,14 @@ export type PresentedSource = {
name: string;
};
type ActiveCallBaseType = {
export type ActiveCallBaseType = {
conversation: ConversationType;
hasLocalAudio: boolean;
hasLocalVideo: boolean;
localAudioLevel: number;
viewMode: CallViewMode;
isSharingScreen?: boolean;
joinedAt?: number;
joinedAt: number | null;
outgoingRing: boolean;
pip: boolean;
presentingSource?: PresentedSource;