Move web ui code in its own directory
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
CommitLineData
83e00df1 1export type BaseConfig = {
6a619cce 2 uiServer: UIServerConfig;
83e00df1 3};
32de5a57 4
83e00df1 5type UIServerConfig = {
32de5a57
LM
6 host: string;
7 port: number;
17bfa1b6 8 protocol: string;
eb3abc4f
JB
9 username?: string;
10 password?: string;
83e00df1 11};