refactor: more coding style fixes
[e-mobility-charging-stations-simulator.git] / src / types / ChargingStationTemplate.ts
index cb358844a98e4968b832eeddc59476397fd2c02e..1b4299b3b798a8dc685788a62cd74a57f28ec192 100644 (file)
@@ -17,26 +17,26 @@ import type {
 
 export enum CurrentType {
   AC = 'AC',
-  DC = 'DC'
+  DC = 'DC',
 }
 
 export enum PowerUnits {
   WATT = 'W',
-  KILO_WATT = 'kW'
+  KILO_WATT = 'kW',
 }
 
 export enum AmpereUnits {
   MILLI_AMPERE = 'mA',
   CENTI_AMPERE = 'cA',
   DECI_AMPERE = 'dA',
-  AMPERE = 'A'
+  AMPERE = 'A',
 }
 
 export enum Voltage {
   VOLTAGE_110 = 110,
   VOLTAGE_230 = 230,
   VOLTAGE_400 = 400,
-  VOLTAGE_800 = 800
+  VOLTAGE_800 = 800,
 }
 
 export type WsOptions = ClientOptions & ClientRequestArgs
@@ -61,7 +61,7 @@ enum x509CertificateType {
   CSMSRootCertificate = 'CSMSRootCertificate',
   ManufacturerRootCertificate = 'ManufacturerRootCertificate',
   ChargingStationCertificate = 'ChargingStationCertificate',
-  V2GCertificate = 'V2GCertificate'
+  V2GCertificate = 'V2GCertificate',
 }
 
 export interface ChargingStationTemplate {