mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
18 lines
442 B
TypeScript
18 lines
442 B
TypeScript
import { RootStore } from "../root.store";
|
|
|
|
export class AppRootStore {
|
|
config;
|
|
commandPalette;
|
|
eventTracker;
|
|
instance;
|
|
theme;
|
|
|
|
constructor(rootStore: RootStore) {
|
|
this.config = new ConfigStore(rootStore);
|
|
this.commandPalette = new CommandPaletteStore(rootStore);
|
|
this.eventTracker = new EventTrackerStore(rootStore);
|
|
this.instance = new InstanceStore(rootStore);
|
|
this.theme = new ThemeStore(rootStore);
|
|
}
|
|
}
|