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