aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/lib/TypedStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/lib/TypedStore.ts')
-rw-r--r--src/stores/lib/TypedStore.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/stores/lib/TypedStore.ts b/src/stores/lib/TypedStore.ts
index 5d8bf3bbd..7f9d2d60f 100644
--- a/src/stores/lib/TypedStore.ts
+++ b/src/stores/lib/TypedStore.ts
@@ -18,9 +18,9 @@ export default abstract class TypedStore {
18 } 18 }
19 19
20 constructor( 20 constructor(
21 public stores: Stores, 21 public readonly stores: Stores,
22 public api: ApiInterface, 22 public readonly api: ApiInterface,
23 public actions: Actions, 23 public readonly actions: Actions,
24 ) {} 24 ) {}
25 25
26 registerReactions(reactions: { (r: IReactionPublic): void }[]): void { 26 registerReactions(reactions: { (r: IReactionPublic): void }[]): void {