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