feat!: handle Set at JSON serialization to string
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
index 51bd21388b82b6c4260c5d1e2931f8611f45bac2..1c8de85bc20c623f1656104b01bebf1397f22407 100644 (file)
@@ -1,10 +1,11 @@
 import type { AuthenticationType, Protocol, ProtocolVersion } from './UIProtocol'
 
-export type ConfigurationData = {
+export interface ConfigurationData {
   uiServer: UIServerConfigurationSection | UIServerConfigurationSection[]
 }
 
-export type UIServerConfigurationSection = {
+export interface UIServerConfigurationSection {
+  name?: string
   host: string
   port: number
   secure?: boolean