mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
16 lines
333 B
TypeScript
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();
|
||
|
}
|
||
|
}
|