Ensure number conversion helpers do not return NaN
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / ChargePointErrorCode.ts
index 30d91ad84d03135bd177a23c25bd3ef9208d2a8f..75c5c482982096723c8e69f4aef8ccd91fbfb8d5 100644 (file)
@@ -1,7 +1,7 @@
 import { OCPP16ChargePointErrorCode } from './1.6/ChargePointErrorCode';
 
-export type ChargePointErrorCode = typeof ChargePointErrorCode;
+export type ChargePointErrorCode = OCPP16ChargePointErrorCode;
 
 export const ChargePointErrorCode = {
-  ...OCPP16ChargePointErrorCode
+  ...OCPP16ChargePointErrorCode,
 };