Simplify WorkerUtils.defaultErrorHandler usage in WorkerSet
[e-mobility-charging-stations-simulator.git] / src / types / MeasurandPerPhaseSampledValueTemplates.ts
index 2fb8f9ba21716957e71aa586a0fd4778a0e46e83..34ead1a574a9df526b238794753e4a72f96ca51b 100644 (file)
@@ -4,8 +4,8 @@ export interface SampledValueTemplate extends SampledValue {
   fluctuationPercent?: number;
 }
 
-export default interface MeasurandPerPhaseSampledValueTemplates {
+export type MeasurandPerPhaseSampledValueTemplates = {
   L1?: SampledValueTemplate;
   L2?: SampledValueTemplate;
   L3?: SampledValueTemplate;
-}
+};