1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-09 10:22:46 +03:00

Add more access modifiers

This commit is contained in:
David Baker
2022-11-01 16:14:48 +00:00
parent cb8123dec7
commit 476f6f78b1
3 changed files with 83 additions and 81 deletions

View File

@@ -125,16 +125,16 @@ class MockCall {
public sendMetadataUpdate = jest.fn<void, []>();
on = jest.fn();
removeListener = jest.fn();
public on = jest.fn();
public removeListener = jest.fn();
getOpponentMember(): Partial<RoomMember> {
public getOpponentMember(): Partial<RoomMember> {
return {
userId: this.opponentUserId,
};
}
typed(): MatrixCall { return this as unknown as MatrixCall; }
public typed(): MatrixCall { return this as unknown as MatrixCall; }
}
describe('Group Call', function() {