Keep track of the connector status and restore it properly on reload.
[e-mobility-charging-stations-simulator.git] / src / charging-station / OcppError.ts
index 1f384783a90e428c12bdb48ea7b05f8189ab4373..3de71eb539125bc22de51da613948a7ea6b8e444 100644 (file)
@@ -2,7 +2,7 @@ import Constants from '../utils/Constants';
 
 export default class OCPPError extends Error {
   code: string;
-  details;
+  details: any;
 
   constructor(code: string, message:string , details?) {
     super(message);