X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2Form%2Fentities%2FPerformanceRecord.ts;h=06114da6be0a602422504d2e238a6b3792cae81a;hb=c3da35d496cbb2c78e85fb3d2e125ffd6fd297f4;hp=81ee84b7f6002aa0b4de5e90e237a4acbf8d2dac;hpb=e7aeea18e189dd087c8f951cf77a253e2818ae90;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/orm/entities/PerformanceRecord.ts b/src/types/orm/entities/PerformanceRecord.ts index 81ee84b7..06114da6 100644 --- a/src/types/orm/entities/PerformanceRecord.ts +++ b/src/types/orm/entities/PerformanceRecord.ts @@ -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(this); + // performanceData? = new Collection(this); }