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