Give singletonRoomViewStore a type

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
pull/21833/head
Šimon Brandner 2021-07-11 19:09:39 +02:00
parent 98808aabca
commit 5423421240
No known key found for this signature in database
GPG Key ID: 9760693FDD98A790
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ class RoomViewStore extends Store<ActionPayload> {
} }
} }
let singletonRoomViewStore = null; let singletonRoomViewStore: RoomViewStore = null;
if (!singletonRoomViewStore) { if (!singletonRoomViewStore) {
singletonRoomViewStore = new RoomViewStore(); singletonRoomViewStore = new RoomViewStore();
} }