aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/stores/SharedStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/stores/SharedStore.ts')
-rw-r--r--packages/main/src/stores/SharedStore.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/main/src/stores/SharedStore.ts b/packages/main/src/stores/SharedStore.ts
index 73245cd..76ce05c 100644
--- a/packages/main/src/stores/SharedStore.ts
+++ b/packages/main/src/stores/SharedStore.ts
@@ -22,6 +22,7 @@ import { sharedStore as originalSharedStore } from '@sophie/shared';
22import { Instance, types } from 'mobx-state-tree'; 22import { Instance, types } from 'mobx-state-tree';
23 23
24import { config } from './Config'; 24import { config } from './Config';
25import { runtimeService } from './RuntimeService';
25 26
26export type { 27export type {
27 SharedStoreSnapshotIn, 28 SharedStoreSnapshotIn,
@@ -30,6 +31,7 @@ export type {
30 31
31export const sharedStore = originalSharedStore.props({ 32export const sharedStore = originalSharedStore.props({
32 config: types.optional(config, {}), 33 config: types.optional(config, {}),
34 runtimeServices: types.map(runtimeService),
33}); 35});
34 36
35export interface SharedStore extends Instance<typeof sharedStore> {} 37export interface SharedStore extends Instance<typeof sharedStore> {}