Apply dependencies update
[e-mobility-charging-stations-simulator.git] / src / utils / ElectricUtils.ts
index 448d11ebb1dc205716f2e3bf3d2bd5c53c852fa0..9f0c680ac890ed02e2b277776c63e66c3c7f9ea8 100644 (file)
@@ -8,6 +8,10 @@
  * Targeted to AC related values calculation.
  */
 export class ACElectricUtils {
+  private constructor() {
+    // This is intentional
+  }
+
   static amperageTotal(nbOfPhases: number, Iph: number): number {
     return nbOfPhases * Iph;
   }