feat(ui): allow to specificy a UI server configuration name
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
index 5d0f76797141ec280f4e3cc597a3de2f52e5b36c..18ea267a5e16052c1e58ff4afd9ee5d5c826ba46 100644 (file)
@@ -1,10 +1,11 @@
 import type { AuthenticationType, Protocol, ProtocolVersion } from './UIProtocol'
 
 export type ConfigurationData = {
-  uiServer: UIServerConfigurationSection
+  uiServer: UIServerConfigurationSection | UIServerConfigurationSection[]
 }
 
 export type UIServerConfigurationSection = {
+  name?: string
   host: string
   port: number
   secure?: boolean