import type { ComputedValues } from 'stores/calculation/values/computed'; function wrapElementsMap>(arg: T) { return arg; } const elementsToComputed = wrapElementsMap({ labelLeaseObjectRisk: 'leaseObjectRiskName', tbxInsKaskoPriceLeasePeriod: 'insKaskoPriceLeasePeriod', labelIrrInfo: 'irrInfo', labelRegistrationDescription: 'registrationDescription', }); export default elementsToComputed; export type Elements = keyof typeof elementsToComputed;