build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
CommitLineData
69074173 1import type { OCPPConfigurationKey } from './ocpp/Configuration';
2484ac1e 2
17e9e8ce 3export type ConfigurationKey = OCPPConfigurationKey & {
2484ac1e
JB
4 visible?: boolean;
5 reboot?: boolean;
17e9e8ce 6};
2484ac1e 7
e1d9a0f4 8export interface ChargingStationOcppConfiguration {
2484ac1e 9 configurationKey?: ConfigurationKey[];
e1d9a0f4 10}