X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FStatistics.ts;h=86a867584fb4e46d106a2c22c6c5d134f4d2e550;hb=2a370053f45f2d58e90ab7b292294c521a262ca1;hp=7999e14ae86074a0f4a8ac798e1da9c3f835cd58;hpb=e4362ed76fe7b256b3f7a6ada2b92e53be8ab09f;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/Statistics.ts b/src/types/Statistics.ts index 7999e14a..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,6 +19,7 @@ export interface StatisticsData { export default interface Statistics { id: string; + URI: string; createdAt: Date; lastUpdatedAt?: Date; statisticsData: Record;