Add the missing issue template key in the right section
[e-mobility-charging-stations-simulator.git] / src / types / ocpp / Transaction.ts
index cca05a395c0e54f475782661092fac9008d984f3..cee8f3cf6d2663c48f8c78fbd57b843269182757 100644 (file)
@@ -1,6 +1,12 @@
-import { OCPP16AuthorizationStatus, OCPP16AuthorizeResponse, OCPP16StartTransactionResponse, OCPP16StopTransactionReason, OCPP16StopTransactionResponse } from './1.6/Transaction';
+import {
+  OCPP16AuthorizationStatus,
+  OCPP16AuthorizeResponse,
+  OCPP16StartTransactionResponse,
+  OCPP16StopTransactionReason,
+  OCPP16StopTransactionResponse,
+} from './1.6/Transaction';
 
-export type AuthorizationStatus = typeof AuthorizationStatus;
+export type AuthorizationStatus = OCPP16AuthorizationStatus;
 
 export const AuthorizationStatus = {
   ...OCPP16AuthorizationStatus,
@@ -8,7 +14,7 @@ export const AuthorizationStatus = {
 
 export type AuthorizeResponse = OCPP16AuthorizeResponse;
 
-export type StopTransactionReason = typeof StopTransactionReason;
+export type StopTransactionReason = OCPP16StopTransactionReason;
 
 export const StopTransactionReason = {
   ...OCPP16StopTransactionReason,