build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / Statistics.ts
index fb9ededbfa99a5c63d2cc99dad3af0bfa59c2f71..59d13108d08e9425fc474e0aa4fd9b87c289e02f 100644 (file)
@@ -1,13 +1,13 @@
-import type { CircularArray } from '../utils/CircularArray';
 import type { IncomingRequestCommand, RequestCommand } from './ocpp/Requests';
-import type { WorkerData } from './Worker';
+import type { CircularArray } from '../utils';
+import type { WorkerData } from '../worker';
 
 export type TimeSeries = {
   timestamp: number;
   value: number;
 };
 
-export type StatisticsData = {
+type StatisticsData = {
   countRequest: number;
   countResponse: number;
   countError: number;