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