X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FStatistics.ts;h=72f96696905165847155a305ddb8b4d5e3f8ab5b;hb=8eb3b688c4b6fb3e946f38d474a5125caf1d056a;hp=26f6bc9fc39281a9e1777721b6e0b53408d42c8b;hpb=83e00df1c1ba02de8b637ca4cb0464eb909ebb18;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/Statistics.ts b/src/types/Statistics.ts index 26f6bc9f..72f96696 100644 --- a/src/types/Statistics.ts +++ b/src/types/Statistics.ts @@ -22,11 +22,11 @@ export type StatisticsData = { stdDevTimeMeasurement: number; }; -export default interface Statistics extends WorkerData { +export type Statistics = WorkerData & { id: string; name: string; uri: string; createdAt: Date; updatedAt?: Date; statisticsData: Map>; -} +};