X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FStatistics.ts;h=00c73052f98d132de8bfc2dbb3a2bc81c444f00e;hb=cd8dd45729bcb9838f1f3c7b82596b8b30f8ce4d;hp=86a867584fb4e46d106a2c22c6c5d134f4d2e550;hpb=2a370053f45f2d58e90ab7b292294c521a262ca1;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/Statistics.ts b/src/types/Statistics.ts index 86a86758..00c73052 100644 --- a/src/types/Statistics.ts +++ b/src/types/Statistics.ts @@ -1,5 +1,4 @@ import { CircularArray } from '../utils/CircularArray'; -import { URL } from 'url'; export interface StatisticsData { countRequest: number; @@ -21,6 +20,6 @@ export default interface Statistics { id: string; URI: string; createdAt: Date; - lastUpdatedAt?: Date; - statisticsData: Record; + updatedAt?: Date; + statisticsData: Map>; }