Apply dependencies update
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
... / ...
CommitLineData
1import type { OCPPConfigurationKey } from './ocpp/Configuration';
2
3export interface ConfigurationKey extends OCPPConfigurationKey {
4 visible?: boolean;
5 reboot?: boolean;
6}
7
8export type ChargingStationOcppConfiguration = {
9 configurationKey?: ConfigurationKey[];
10};