refactor: code formatting fixlets
authorJérôme Benoit <jerome.benoit@sap.com>
Fri, 9 Feb 2024 23:26:34 +0000 (00:26 +0100)
committerJérôme Benoit <jerome.benoit@sap.com>
Fri, 9 Feb 2024 23:26:34 +0000 (00:26 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
README.md
src/types/ChargingStationWorker.ts

index 9eb3a7a709246c7cb0468c2af8c1fda97a04d562..dab75e457fef813dfc671ec782fca86d1c2d6760 100644 (file)
--- 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  
    }  
   }
 
index cd3f0ebd0ffcab7335b3c835adbb7249d130c28d..346537cb28c24024f0787b3e150e969555206faa 100644 (file)
@@ -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 {