chore: rename core root store

This commit is contained in:
Aaryan Khandelwal 2024-06-13 12:57:07 +05:30
parent efbd23838e
commit 98a0742d5c
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
// store // store
import { RootStore as CoreRootStore } from "@/store/root.store"; import { CoreRootStore } from "@/store/root.store";
export class RootStore extends CoreRootStore { export class RootStore extends CoreRootStore {
constructor() { constructor() {

View File

@ -26,7 +26,7 @@ import { IWorkspaceRootStore, WorkspaceRootStore } from "./workspace";
enableStaticRendering(typeof window === "undefined"); enableStaticRendering(typeof window === "undefined");
export class RootStore { export class CoreRootStore {
workspaceRoot: IWorkspaceRootStore; workspaceRoot: IWorkspaceRootStore;
projectRoot: IProjectRootStore; projectRoot: IProjectRootStore;
memberRoot: IMemberRootStore; memberRoot: IMemberRootStore;