Refine TS and linter configuration
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
CommitLineData
6c1761d4 1import type { OCPPConfigurationKey } from './ocpp/Configuration';
2484ac1e
JB
2
3export interface ConfigurationKey extends OCPPConfigurationKey {
4 visible?: boolean;
5 reboot?: boolean;
6}
7
8export default interface ChargingStationOcppConfiguration {
9 configurationKey?: ConfigurationKey[];
10}