X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Ftypes%2FStatistics.ts;h=5f22cdafd7347c774a9b3472fdaa1b7bb724089f;hb=e8044a69a745aab08dfeea0bd9ec9dd7fe84cdd7;hp=f43da99b81e8298449fd7c538a47449163e6bd81;hpb=2896e06dc8d72adf7150b23c941079f622f6f37c;p=e-mobility-charging-stations-simulator.git diff --git a/src/types/Statistics.ts b/src/types/Statistics.ts index f43da99b..5f22cdaf 100644 --- a/src/types/Statistics.ts +++ b/src/types/Statistics.ts @@ -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;