refactor(simulator): switch to named exports
[e-mobility-charging-stations-simulator.git] / src / charging-station / ui-server / AbstractUIServer.ts
index f69b9b3419924cf47a79dc5aeb0a8e6f4e5cdc00..053b1baecd450fba7d45691ffeabbe4a261bc510 100644 (file)
@@ -2,19 +2,19 @@ import { type IncomingMessage, Server, type ServerResponse } from 'http';
 
 import type { WebSocket } from 'ws';
 
-import type AbstractUIService from './ui-services/AbstractUIService';
-import UIServiceFactory from './ui-services/UIServiceFactory';
-import type { ChargingStationData } from '../../types/ChargingStationWorker';
-import type { UIServerConfiguration } from '../../types/ConfigurationData';
+import type { AbstractUIService } from './ui-services/AbstractUIService';
+import { UIServiceFactory } from './ui-services/UIServiceFactory';
 import {
   AuthenticationType,
+  type ChargingStationData,
   type ProcedureName,
   type ProtocolRequest,
   type ProtocolResponse,
   type ProtocolVersion,
   type RequestPayload,
   type ResponsePayload,
-} from '../../types/UIProtocol';
+  type UIServerConfiguration,
+} from '../../types';
 
 export abstract class AbstractUIServer {
   public readonly chargingStations: Map<string, ChargingStationData>;