mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
14 lines
388 B
TypeScript
14 lines
388 B
TypeScript
|
import { ProjectsStore } from "./projects.store";
|
||
|
import { ProjectPublishStore } from "./project-publish.store";
|
||
|
import { RootStore } from "store/root.store";
|
||
|
|
||
|
export class ProjectRootStore {
|
||
|
projects: ProjectsStore;
|
||
|
publish: ProjectPublishStore;
|
||
|
|
||
|
constructor(_root: RootStore) {
|
||
|
this.projects = new ProjectsStore(_root);
|
||
|
this.publish = new ProjectPublishStore(this);
|
||
|
}
|
||
|
}
|