plane/web/store/application/index.ts
2023-12-11 14:55:05 +05:30

16 lines
333 B
TypeScript

export class AppRootStore {
config;
commandPalette;
eventTracker;
instance;
theme;
constructor() {
this.config = new ConfigStore();
this.commandPalette = new CommandPaletteStore();
this.eventTracker = new EventTrackerStore();
this.instance = new InstanceStore();
this.theme = new ThemeStore();
}
}