refactor(simulator): explicitly export needed types only
[e-mobility-charging-stations-simulator.git] / src / types / ConfigurationData.ts
index b629dd3b0230fb116a73911a971c2ed7adb0a7c9..5a6853d22fd1853f714df96b06ad270d57d58c04 100644 (file)
@@ -1,12 +1,11 @@
-import type { ListenOptions } from 'net';
+import type { ListenOptions } from 'node:net';
 
 import type { WorkerChoiceStrategy } from 'poolifier';
 
-import type { StorageType } from './Storage';
-import type { ApplicationProtocol, AuthenticationType } from './UIProtocol';
-import type { WorkerProcessType } from './Worker';
+import type { ApplicationProtocol, AuthenticationType, StorageType } from './internal';
+import type { WorkerProcessType } from '../worker';
 
-export type ServerOptions = ListenOptions;
+type ServerOptions = ListenOptions;
 
 export enum SupervisionUrlDistribution {
   ROUND_ROBIN = 'round-robin',