build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / orm / entities / PerformanceRecord.ts
index 81ee84b7f6002aa0b4de5e90e237a4acbf8d2dac..1369377d7207db7b4484058aa9607f52fe7f50ae 100644 (file)
@@ -1,6 +1,6 @@
 import { Collection, Entity, OneToMany, PrimaryKey, Property } from '@mikro-orm/core';
 
-import { PerformanceData } from './PerformanceData';
+import type { PerformanceData } from '../../internal';
 
 @Entity()
 export class PerformanceRecord {
@@ -15,5 +15,5 @@ export class PerformanceRecord {
   // @Property()
   // updatedAt?: Date;
   // @OneToMany('PerformanceData', 'performanceRecord')
-  // performanceData?= new Collection<PerformanceData>(this);
+  // performanceData? = new Collection<PerformanceData>(this);
 }