aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/index.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2024-03-22 02:33:33 +0530
committerLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2024-03-21 21:24:35 +0000
commit2f3f2ae7f098376f535e5aa993c9eedc14e36f5d (patch)
treed919bda212744493a7b66c2e91a75455421d62cc /src/stores/index.ts
parentUpgrade electron to '29.1.5' (diff)
downloadferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.gz
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.tar.zst
ferdium-app-2f3f2ae7f098376f535e5aa993c9eedc14e36f5d.zip
Upgrade node modules
Diffstat (limited to 'src/stores/index.ts')
-rw-r--r--src/stores/index.ts24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/stores/index.ts b/src/stores/index.ts
index f9927d9a3..5b96e6efb 100644
--- a/src/stores/index.ts
+++ b/src/stores/index.ts
@@ -1,19 +1,19 @@
1import { RouterStore } from '@superwf/mobx-react-router'; 1import type { RouterStore } from '@superwf/mobx-react-router';
2import { ApiInterface } from '../api'; 2import type { Actions } from '../actions/lib/actions';
3import { Actions } from '../actions/lib/actions'; 3import type { ApiInterface } from '../api';
4import { communityRecipesStore } from '../features/communityRecipes';
5import { todosStore } from '../features/todos';
6import { workspaceStore } from '../features/workspaces';
4import AppStore from './AppStore'; 7import AppStore from './AppStore';
5import UserStore from './UserStore';
6import FeaturesStore from './FeaturesStore'; 8import FeaturesStore from './FeaturesStore';
7import SettingsStore from './SettingsStore'; 9import GlobalErrorStore from './GlobalErrorStore';
8import ServicesStore from './ServicesStore';
9import RecipesStore from './RecipesStore';
10import RecipePreviewsStore from './RecipePreviewsStore'; 10import RecipePreviewsStore from './RecipePreviewsStore';
11import UIStore from './UIStore'; 11import RecipesStore from './RecipesStore';
12import RequestStore from './RequestStore'; 12import RequestStore from './RequestStore';
13import GlobalErrorStore from './GlobalErrorStore'; 13import ServicesStore from './ServicesStore';
14import { workspaceStore } from '../features/workspaces'; 14import SettingsStore from './SettingsStore';
15import { communityRecipesStore } from '../features/communityRecipes'; 15import UIStore from './UIStore';
16import { todosStore } from '../features/todos'; 16import UserStore from './UserStore';
17 17
18export interface RealStores { 18export interface RealStores {
19 router: RouterStore; 19 router: RouterStore;