From 2f3f2ae7f098376f535e5aa993c9eedc14e36f5d Mon Sep 17 00:00:00 2001 From: Vijay A Date: Fri, 22 Mar 2024 02:33:33 +0530 Subject: Upgrade node modules --- src/stores/index.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/stores/index.ts') 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 @@ -import { RouterStore } from '@superwf/mobx-react-router'; -import { ApiInterface } from '../api'; -import { Actions } from '../actions/lib/actions'; +import type { RouterStore } from '@superwf/mobx-react-router'; +import type { Actions } from '../actions/lib/actions'; +import type { ApiInterface } from '../api'; +import { communityRecipesStore } from '../features/communityRecipes'; +import { todosStore } from '../features/todos'; +import { workspaceStore } from '../features/workspaces'; import AppStore from './AppStore'; -import UserStore from './UserStore'; import FeaturesStore from './FeaturesStore'; -import SettingsStore from './SettingsStore'; -import ServicesStore from './ServicesStore'; -import RecipesStore from './RecipesStore'; +import GlobalErrorStore from './GlobalErrorStore'; import RecipePreviewsStore from './RecipePreviewsStore'; -import UIStore from './UIStore'; +import RecipesStore from './RecipesStore'; import RequestStore from './RequestStore'; -import GlobalErrorStore from './GlobalErrorStore'; -import { workspaceStore } from '../features/workspaces'; -import { communityRecipesStore } from '../features/communityRecipes'; -import { todosStore } from '../features/todos'; +import ServicesStore from './ServicesStore'; +import SettingsStore from './SettingsStore'; +import UIStore from './UIStore'; +import UserStore from './UserStore'; export interface RealStores { router: RouterStore; -- cgit v1.2.3-54-g00ecf