X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fui%2Fweb%2Fsrc%2Ftypes%2FConfigurationType.ts;h=f07f565e3315a5366ead7940e0681d8369097f6b;hb=eb5ac884f919755e11c78e5c2fdc51bf7b0983c0;hp=69e2b9cd5b16d485b1ea8f050af7a4b19b370762;hpb=17bfa1b672f294e7af4c9a344cb42628cf0c1d87;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 69e2b9cd..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: string; + username?: string; + password?: string; }