Have LocalEchoWrapper emit updates so the app can react faster (#7358)

This commit is contained in:
Michael Telatynski 2021-12-17 08:53:03 +00:00 committed by GitHub
parent feea80dfd5
commit 9ed771ad7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 30 additions and 16 deletions

View file

@ -33,7 +33,7 @@ export default class DeviceSettingsHandler extends SettingsHandler {
* @param {string[]} featureNames The names of known features.
* @param {WatchManager} watchers The watch manager to notify updates to
*/
constructor(private featureNames: string[], private watchers: WatchManager) {
constructor(private featureNames: string[], public readonly watchers: WatchManager) {
super();
}