refactor(ui): cleanup configuration types and variables namespace
[e-mobility-charging-stations-simulator.git] / ui / web / src / assets / config.ts
index cf6f3eb2d23a41435484386d0ef4a9d850d6bda4..28b3f158eb015198fd68c7fee0ea8f2f1fa17295 100644 (file)
@@ -1,6 +1,6 @@
-import type { BaseConfig } from '@/types'
+import type { ConfigurationData } from '@/types'
 
-const config: BaseConfig = {
+const configuration: ConfigurationData = {
   uiServer: {
     host: 'localhost',
     port: 8080,
@@ -8,4 +8,4 @@ const config: BaseConfig = {
   }
 }
 
-export default config
+export default configuration