Strict null type check fixes
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
CommitLineData
6c1761d4 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
83e00df1 8export type ChargingStationOcppConfiguration = {
2484ac1e 9 configurationKey?: ConfigurationKey[];
83e00df1 10};