From: Jérôme Benoit Date: Fri, 9 Feb 2024 23:26:34 +0000 (+0100) Subject: refactor: code formatting fixlets X-Git-Tag: v1.2.36~18 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=9a08f38e319292816bdfb5c6d14bbfebcbfa5618;p=e-mobility-charging-stations-simulator.git refactor: code formatting fixlets Signed-off-by: Jérôme Benoit --- diff --git a/README.md b/README.md index 9eb3a7a7..dab75e45 100644 --- a/README.md +++ b/README.md @@ -573,9 +573,9 @@ Set the Websocket header _Sec-Websocket-Protocol_ to `ui0.0.1`. `template`: string, `numberOfStations`: number, `options?`: { + `persistentConfiguration?`: boolean, `autoStart?`: boolean, - `autoRegister?`: boolean, - `persistentConfiguration?`: boolean + `autoRegister?`: boolean } } diff --git a/src/types/ChargingStationWorker.ts b/src/types/ChargingStationWorker.ts index cd3f0ebd..346537cb 100644 --- a/src/types/ChargingStationWorker.ts +++ b/src/types/ChargingStationWorker.ts @@ -12,9 +12,9 @@ import type { Statistics } from './Statistics.js' import { type WorkerData, type WorkerMessage, WorkerMessageEvents } from '../worker/index.js' export interface ChargingStationOptions extends JsonObject { + persistentConfiguration?: boolean autoStart?: boolean autoRegister?: boolean - persistentConfiguration?: boolean } export interface ChargingStationWorkerData extends WorkerData {