cfdbf34a319dcc4b55a87067985dee66af44d561
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
1 export type ConfigurationData = {
2 uiServer: UIServerConfigurationSection
3 }
4
5 type UIServerConfigurationSection = {
6 host: string
7 port: number
8 protocol: string
9 username?: string
10 password?: string
11 }