0
0
mirror of https://github.com/makeplane/plane synced 2024-06-14 14:31:34 +00:00
plane/web/store/application/index.ts

16 lines
333 B
TypeScript
Raw Normal View History

2023-12-11 09:25:05 +00:00
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();
}
}