fix: strict number check
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index c6c691b05e49706fc58fa4cf334d31eb1450df63..c42e15be6e3687f84202f125af61ea966e6ea46a 100644 (file)
@@ -1,6 +1,6 @@
-import { MeterValueMeasurand } from '../types/ocpp/MeterValues';
+import { MeterValueMeasurand } from '../types';
 
-export default class Constants {
+export class Constants {
   static readonly OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL = 60000; // Ms
   static readonly OCPP_WEBSOCKET_TIMEOUT = 60000; // Ms
   static readonly OCPP_TRIGGER_MESSAGE_DELAY = 500; // Ms
@@ -47,6 +47,11 @@ export default class Constants {
 
   static readonly MAX_RANDOM_INTEGER = 281474976710654;
 
+  static readonly EMPTY_FREEZED_OBJECT = Object.freeze({});
+  static readonly EMPTY_FUNCTION = Object.freeze(() => {
+    /* This is intentional */
+  });
+
   private constructor() {
     // This is intentional
   }