build(deps-dev): Bump jsdom from 23.0.1 to 23.1.0 in /ui/web
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
CommitLineData
83e00df1 1export type BaseConfig = {
66a7748d
JB
2 uiServer: UIServerConfig
3}
32de5a57 4
83e00df1 5type UIServerConfig = {
66a7748d
JB
6 host: string
7 port: number
8 protocol: string
9 username?: string
10 password?: string
11}