aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/lib
diff options
context:
space:
mode:
authorLibravatar Ricardo Cino <ricardo@cino.io>2022-06-22 16:21:23 +0200
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-06-23 17:50:07 +0530
commitcaf43fc8d64c27a1aad4a5d6507313c513c1a447 (patch)
treec0a7bcb950cdf555b3e8a33a57e2241e7051861d /src/stores/lib
parentWorkaroud for in-app Password Recovery (#342) (diff)
downloadferdium-app-caf43fc8d64c27a1aad4a5d6507313c513c1a447.tar.gz
ferdium-app-caf43fc8d64c27a1aad4a5d6507313c513c1a447.tar.zst
ferdium-app-caf43fc8d64c27a1aad4a5d6507313c513c1a447.zip
chore: featureStore and GlobalErrorStore JS => TS
Diffstat (limited to 'src/stores/lib')
-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 {