feat(ui): use toggle button to star/stop simulator
[e-mobility-charging-stations-simulator.git] / src / charging-station / Bootstrap.ts
index 047b321b55c36c910211e381482f09439422a63b..9247ab3deb5112925a4a7f8f215c31a5823712ff 100644 (file)
@@ -118,6 +118,12 @@ export class Bootstrap extends EventEmitter {
     )
   }
 
+  public getState (): { started: boolean } {
+    return {
+      started: this.started
+    }
+  }
+
   public getLastIndex (templateName: string): number {
     // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
     const indexes = [...this.templatesChargingStations.get(templateName)!.indexes]