Conform more of the codebase to strict typescript (#10841)

This commit is contained in:
Michael Telatynski 2023-05-25 09:39:23 +01:00 committed by GitHub
parent af78a5a2f5
commit 277a3c0146
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 89 additions and 60 deletions

View file

@ -146,7 +146,7 @@ export class CallStore extends AsyncStoreWithClient<{}> {
this.calls.set(room.roomId, call);
this.callListeners.set(
call,
new Map<CallEvent, (...args: unknown[]) => unknown>([
new Map<CallEvent, (...args: any[]) => unknown>([
[CallEvent.ConnectionState, onConnectionState],
[CallEvent.Destroy, onDestroy],
]),