X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FStatistics.ts;h=120f258ef247005fd00129a9762b18471ef8951d;hb=2d7040b2cd9d96dceb0160a5afe7dca5c727b890;hp=7c099bc96eaf29389f66650baa0219360195df19;hpb=aef1b33aa631deaf5c939dc6a232ca8cc8147fc6;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/Statistics.ts b/src/types/Statistics.ts index 7c099bc9..120f258e 100644 --- a/src/types/Statistics.ts +++ b/src/types/Statistics.ts @@ -12,10 +12,14 @@ export interface StatisticsData { totalTimeMeasurement: number; avgTimeMeasurement: number; medTimeMeasurement: number; + ninetyFiveThPercentileTimeMeasurement: number; stdDevTimeMeasurement: number; } export default interface Statistics { id: string; + URI: string; + createdAt: Date; + updatedAt?: Date; statisticsData: Record; }