refactor(ui): move the charging stations data array to vue.js global
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationWorker.ts
index d0cdf900dd2a836ed76dd827c035e795714757e2..ff3c5ef0fe56ed6b29d11745279dd334741a3b92 100644 (file)
@@ -12,7 +12,13 @@ import type { Statistics } from './Statistics.js'
 import { type WorkerData, type WorkerMessage, WorkerMessageEvents } from '../worker/index.js'
 
 export interface ChargingStationOptions extends JsonObject {
+  supervisionUrls?: string | string[]
+  persistentConfiguration?: boolean
   autoStart?: boolean
+  autoRegister?: boolean
+  enableStatistics?: boolean
+  ocppStrictCompliance?: boolean
+  stopTransactionsOnStopped?: boolean
 }
 
 export interface ChargingStationWorkerData extends WorkerData {