Remove uneeded type usage
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Responses.ts
index d7e6db554f68456e79aac01709f4366b6bbaeb64..db44800c4e0c9d44eb3db03eab6d746d14190a34 100644 (file)
@@ -11,12 +11,18 @@ import {
   OCPP16UnlockStatus,
 } from './1.6/Responses';
 
-import { JsonType } from '../JsonType';
+import { ErrorType } from './ErrorType';
+import { JsonObject } from '../JsonType';
+import { MessageType } from './MessageType';
 import { OCPP16MeterValuesResponse } from './1.6/MeterValues';
 
+export type Response = [MessageType.CALL_RESULT_MESSAGE, string, JsonObject];
+
+export type ErrorResponse = [MessageType.CALL_ERROR_MESSAGE, string, ErrorType, string, JsonObject];
+
 export type ResponseHandler = (
-  payload: JsonType | string,
-  requestPayload?: JsonType
+  payload: JsonObject,
+  requestPayload?: JsonObject
 ) => void | Promise<void>;
 
 export type BootNotificationResponse = OCPP16BootNotificationResponse;