Add charging stations listing to WS server commands
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationConfiguration.ts
CommitLineData
f7a1d1a9 1import { OCPPConfigurationKey } from './ocpp/Configuration';
6a64534b 2
8bbe7426 3export interface ConfigurationKey extends OCPPConfigurationKey {
e118beaa
JB
4 visible?: boolean;
5 reboot?: boolean;
6}
7
8export default interface ChargingStationConfiguration {
9 configurationKey: ConfigurationKey[];
10}