1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-08-06 10:22:45 +03:00

Upgrade to es2022

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski
2024-08-01 09:50:42 +01:00
parent c290e7e375
commit 6d87029807
57 changed files with 75 additions and 80 deletions

View File

@@ -43,6 +43,7 @@ export class MockedCall extends Call {
},
room.client,
);
this.groupCall = { creationTs: this.event.getTs() } as unknown as GroupCall;
}
public static get(room: Room): MockedCall | null {
@@ -67,7 +68,7 @@ export class MockedCall extends Call {
CallStore.instance.updateRoom(room);
}
public readonly groupCall = { creationTs: this.event.getTs() } as unknown as GroupCall;
public readonly groupCall;
public get participants(): Map<RoomMember, Set<string>> {
return super.participants;