chore: bump volta pnpm version
[e-mobility-charging-stations-simulator.git] / types / ConfigurationType.ts
1 export interface BaseConfig {
2 uiServer: UIServerConfig;
3 }
4
5 interface UIServerConfig {
6 host: string;
7 port: number;
8 protocol: string;
9 }