31 lines
536 B
TypeScript
31 lines
536 B
TypeScript
/* eslint-disable import/no-cycle */
|
|
import { makeAutoObservable } from 'mobx';
|
|
import type RootStore from 'stores/root';
|
|
|
|
export default class Computed {
|
|
root: RootStore;
|
|
|
|
constructor(rootStore: RootStore) {
|
|
makeAutoObservable(this);
|
|
this.root = rootStore;
|
|
}
|
|
|
|
get leaseObjectRiskName() {
|
|
return '';
|
|
}
|
|
|
|
get irrInfo() {
|
|
return '';
|
|
}
|
|
|
|
get registrationDescription() {
|
|
return '';
|
|
}
|
|
|
|
get insKaskoPriceLeasePeriod() {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
export type ComputedValues = Exclude<keyof Computed, 'root'>;
|