Type a bit some attributes.
[e-mobility-charging-stations-simulator.git] / src / charging-station / OcppError.ts
index a43c62d30fc07791fe6195bd0d76942b3ce74d19..1f384783a90e428c12bdb48ea7b05f8189ab4373 100644 (file)
@@ -1,10 +1,10 @@
 import Constants from '../utils/Constants';
 
 export default class OCPPError extends Error {
-  code;
+  code: string;
   details;
 
-  constructor(code, message, details?) {
+  constructor(code: string, message:string , details?) {
     super(message);
 
     this.code = code || Constants.OCPP_ERROR_GENERIC_ERROR;