refactor: use syntax shortcuts
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationWorker.ts
index cd3f0ebd0ffcab7335b3c835adbb7249d130c28d..6dbd879310592796529df358364c65c69f672734 100644 (file)
@@ -12,9 +12,12 @@ 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
+  enableStatistics?: boolean
+  ocppStrictCompliance?: boolean
+  stopTransactionsOnStopped?: boolean
 }
 
 export interface ChargingStationWorkerData extends WorkerData {