chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationOcppConfiguration.ts
CommitLineData
66a7748d 1import type { OCPPConfigurationKey } from './ocpp/Configuration.js'
2484ac1e 2
17e9e8ce 3export type ConfigurationKey = OCPPConfigurationKey & {
66a7748d
JB
4 visible?: boolean
5 reboot?: boolean
6}
2484ac1e 7
e1d9a0f4 8export interface ChargingStationOcppConfiguration {
66a7748d 9 configurationKey?: ConfigurationKey[]
e1d9a0f4 10}