From 9a08f38e319292816bdfb5c6d14bbfebcbfa5618 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 10 Feb 2024 00:26:34 +0100 Subject: [PATCH] refactor: code formatting fixlets MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- README.md | 4 ++-- src/types/ChargingStationWorker.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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 { -- 2.34.1