fix: move and fix statistic related helpers implementation
[e-mobility-charging-stations-simulator.git] / src / types / Statistics.ts
index 6abc1287c991368a6f2ca2343a8f86b545707a7b..5f22cdafd7347c774a9b3472fdaa1b7bb724089f 100644 (file)
@@ -1,13 +1,13 @@
-import type { IncomingRequestCommand, RequestCommand } from './ocpp/Requests';
-import type { WorkerData } from './Worker';
-import type { CircularArray } from '../utils/CircularArray';
+import type { IncomingRequestCommand, RequestCommand } from './internal';
+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;