aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/stores/SharedStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/stores/SharedStore.ts')
-rw-r--r--packages/shared/src/stores/SharedStore.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/shared/src/stores/SharedStore.ts b/packages/shared/src/stores/SharedStore.ts
index cb14394..ffa387f 100644
--- a/packages/shared/src/stores/SharedStore.ts
+++ b/packages/shared/src/stores/SharedStore.ts
@@ -27,10 +27,12 @@ import {
27} from 'mobx-state-tree'; 27} from 'mobx-state-tree';
28 28
29import { config } from './Config'; 29import { config } from './Config';
30import { runtimeService } from './RuntimeService';
30 31
31export const sharedStore = types.model('SharedStore', { 32export const sharedStore = types.model('SharedStore', {
32 config: types.optional(config, {}), 33 config: types.optional(config, {}),
33 shouldUseDarkColors: false, 34 shouldUseDarkColors: false,
35 runtimeServices: types.map(runtimeService),
34}); 36});
35 37
36export interface SharedStore extends Instance<typeof sharedStore> {} 38export interface SharedStore extends Instance<typeof sharedStore> {}