import type { CalcMode } from "./CalcMode.js"; export type CalcPropertiesPatch = { calcMode?: CalcMode; fullCalcOnLoad?: boolean; forceFullCalc?: boolean; calcOnSave?: boolean; concurrentCalc?: boolean; iterate?: boolean; iterateCount?: number; iterateDelta?: number; fullPrecision?: boolean; calculationId?: number; };