plane/web/store/application/index.ts

18 lines
442 B
TypeScript
Raw Normal View History

2023-12-11 10:18:59 +00:00
import { RootStore } from "../root.store";
2023-12-11 09:25:05 +00:00
export class AppRootStore {
config;
commandPalette;
eventTracker;
instance;
theme;
2023-12-11 10:18:59 +00:00
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);
2023-12-11 09:25:05 +00:00
}
}