Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
numStationsTotal++;
}
} catch (error) {
- // eslint-disable-next-line no-console
console.error('Charging station start with template file ' + stationURL.file + ' error ', error);
}
}
}
this.started = true;
} catch (error) {
- // eslint-disable-next-line no-console
console.error('Bootstrap start error ', error);
}
}
}
function startChargingStation(data: StationWorkerData): void {
- const station = new ChargingStation(data.index , data.templateFile);
+ const station = new ChargingStation(data.index, data.templateFile);
station.start();
}
import { OCPPConfigurationKey } from './ocpp/Configuration';
-export interface ConfigurationKey extends OCPPConfigurationKey{
+export interface ConfigurationKey extends OCPPConfigurationKey {
visible?: boolean;
reboot?: boolean;
}