refactor(ui): cleanup configuration types and variables namespace
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
CommitLineData
b7169a17
JB
1export type ConfigurationData = {
2 uiServer: UIServerConfigurationSection
66a7748d 3}
32de5a57 4
b7169a17 5type UIServerConfigurationSection = {
66a7748d
JB
6 host: string
7 port: number
8 protocol: string
9 username?: string
10 password?: string
11}