build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / Statistics.ts
index 44c941e70bee6e2b7ee828f657c75463a5ffef73..60b2379b77577757f4f5d883e828662645acb8f1 100644 (file)
@@ -2,12 +2,12 @@ import type { IncomingRequestCommand, RequestCommand } from './ocpp/Requests';
 import type { CircularArray } from '../utils';
 import type { WorkerData } from '../worker';
 
-export type TimestampedData = {
+export interface TimestampedData {
   timestamp: number;
   value: number;
-};
+}
 
-type StatisticsData = Partial<{
+export type StatisticsData = Partial<{
   requestCount: number;
   responseCount: number;
   errorCount: number;