Fix message buffer handling.
[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;
5 countTime: number;
6 minTime: number;
7 maxTime: number;
8 totalTime: number;
9 avgTime: number;
10}
63b48f77
JB
11
12export default interface CommandStatistics {
13 [command: string]: CommandStatisticsData;
14}