plane/web/store/project/index.ts
sriram veeraghanta 3d09a69d58
fix: eslint issues and reconfiguring (#3891)
* fix: eslint fixes

---------

Co-authored-by: gurusainath <gurusainath007@gmail.com>
2024-03-06 18:39:14 +05:30

19 lines
520 B
TypeScript

import { RootStore } from "store/root.store";
import { IProjectPublishStore, ProjectPublishStore } from "./project-publish.store";
import { IProjectStore, ProjectStore } from "./project.store";
export interface IProjectRootStore {
project: IProjectStore;
publish: IProjectPublishStore;
}
export class ProjectRootStore {
project: IProjectStore;
publish: IProjectPublishStore;
constructor(_root: RootStore) {
this.project = new ProjectStore(_root);
this.publish = new ProjectPublishStore(this);
}
}