Align some types definition in UI
[e-mobility-charging-stations-simulator.git] / src / ui / web / src / types / ConfigurationType.ts
index f07f565e3315a5366ead7940e0681d8369097f6b..9b74808278eca7e1ed1cb37cba3d967b50115c52 100644 (file)
@@ -1,11 +1,11 @@
-export interface BaseConfig {
+export type BaseConfig = {
   uiServer: UIServerConfig;
-}
+};
 
-interface UIServerConfig {
+type UIServerConfig = {
   host: string;
   port: number;
   protocol: string;
   username?: string;
   password?: string;
-}
+};