Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/21833/head
Michael Telatynski 2020-05-21 18:11:21 +01:00
parent b27f1fa6db
commit 7b0e51a703
1 changed files with 2 additions and 2 deletions

View File

@ -29,8 +29,8 @@ import {ActionPayload} from "./dispatcher/payloads";
* Instances of this class are provided by the application. * Instances of this class are provided by the application.
*/ */
export default abstract class BasePlatform { export default abstract class BasePlatform {
protected notificationCount: number = 0; protected notificationCount = 0;
protected errorDidOccur: boolean = false; protected errorDidOccur = false;
constructor() { constructor() {
dis.register(this.onAction); dis.register(this.onAction);