build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
index 9b74808278eca7e1ed1cb37cba3d967b50115c52..cfdbf34a319dcc4b55a87067985dee66af44d561 100644 (file)
@@ -1,11 +1,11 @@
-export type BaseConfig = {
-  uiServer: UIServerConfig;
-};
+export type ConfigurationData = {
+  uiServer: UIServerConfigurationSection
+}
 
-type UIServerConfig = {
-  host: string;
-  port: number;
-  protocol: string;
-  username?: string;
-  password?: string;
-};
+type UIServerConfigurationSection = {
+  host: string
+  port: number
+  protocol: string
+  username?: string
+  password?: string
+}