17 lines
460 B
TypeScript
17 lines
460 B
TypeScript
import { RootStore } from 'stores/root';
|
|
import { OptionsStore } from './options';
|
|
import { StatusStore } from './statuses';
|
|
import { ValuesStore } from './values';
|
|
|
|
export class CalculationStore {
|
|
$values: ValuesStore;
|
|
$status: StatusStore;
|
|
$options: OptionsStore;
|
|
|
|
constructor(rootStore: RootStore) {
|
|
this.$values = new ValuesStore(rootStore);
|
|
this.$status = new StatusStore(rootStore);
|
|
this.$options = new OptionsStore(rootStore);
|
|
}
|
|
}
|