mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3d09a69d58
* fix: eslint fixes --------- Co-authored-by: gurusainath <gurusainath007@gmail.com>
19 lines
520 B
TypeScript
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);
|
|
}
|
|
}
|