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