e9eb729daf04098d07b65c30ea473f0f754032cb
[e-mobility-charging-stations-simulator.git] / src / ui / web / src / types / ConfigurationType.ts
1 export interface BaseConfig {
2 uiServer: UIServerConfig;
3 }
4
5 interface UIServerConfig {
6 host: string;
7 port: number;
8 protocol: string;
9 }