refactor(ui): add vue.js error handler
[e-mobility-charging-stations-simulator.git] / ui / web / src / types / ConfigurationType.ts
... / ...
CommitLineData
1import type { AuthenticationType, Protocol, ProtocolVersion } from './UIProtocol'
2
3export type ConfigurationData = {
4 uiServer: UIServerConfigurationSection
5}
6
7type UIServerConfigurationSection = {
8 host: string
9 port: number
10 secure?: boolean
11 protocol: Protocol
12 version: ProtocolVersion
13 authentication?: {
14 enabled: boolean
15 type: AuthenticationType
16 username?: string
17 password?: string
18 }
19}