8837539517601fd26b25732849a81fff322d831a
[e-mobility-charging-stations-simulator.git] / src / types / CommandStatistics.ts
1 export interface CommandStatisticsData {
2 countRequest: number;
3 countResponse: number;
4 countError: number;
5 countTimeMeasurement: number;
6 currentTime: number;
7 minTime: number;
8 maxTime: number;
9 totalTime: number;
10 avgTime: number;
11 }
12
13 export default interface CommandStatistics {
14 [command: string]: CommandStatisticsData;
15 }