refactor(simulator): explicitly export needed types only
[e-mobility-charging-stations-simulator.git] / src / types / Statistics.ts
index f43da99b81e8298449fd7c538a47449163e6bd81..5f22cdafd7347c774a9b3472fdaa1b7bb724089f 100644 (file)
@@ -1,5 +1,5 @@
 import type { IncomingRequestCommand, RequestCommand } from './internal';
-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;