refactor: organize constants
[e-mobility-charging-stations-simulator.git] / src / types / orm / entities / PerformanceRecord.ts
index 81ee84b7f6002aa0b4de5e90e237a4acbf8d2dac..06114da6be0a602422504d2e238a6b3792cae81a 100644 (file)
@@ -1,6 +1,6 @@
 import { Collection, Entity, OneToMany, PrimaryKey, Property } from '@mikro-orm/core';
 
-import { PerformanceData } from './PerformanceData';
+import type { PerformanceData } from './PerformanceData';
 
 @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);
 }