X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fui%2Fweb%2Fsrc%2Ftypes%2FConfigurationType.ts;h=f07f565e3315a5366ead7940e0681d8369097f6b;hb=eb5ac884f919755e11c78e5c2fdc51bf7b0983c0;hp=ee7baae072e3c811a6ee87041a237b5121bfddef;hpb=f27eb751a2eb332306ecb9c5c4f0578d3bf66ee4;p=e-mobility-charging-stations-simulator.git diff --git a/src/ui/web/src/types/ConfigurationType.ts b/src/ui/web/src/types/ConfigurationType.ts index ee7baae0..f07f565e 100644 --- a/src/ui/web/src/types/ConfigurationType.ts +++ b/src/ui/web/src/types/ConfigurationType.ts @@ -1,9 +1,11 @@ export interface BaseConfig { - emobility: EMobilityConfig; + uiServer: UIServerConfig; } -export interface EMobilityConfig { +interface UIServerConfig { host: string; port: number; - protocol: 'ui0.0.1'; + protocol: string; + username?: string; + password?: string; }