Apply prettier formating
[e-mobility-charging-stations-simulator.git] / src / types / WebSocket.ts
index 60b2f681ef1464b960e26ba783688067149e7e62..7d028afea0543ca4acf70f4c0864ca1a9357b16a 100644 (file)
@@ -1,21 +1,22 @@
-export const WebSocketCloseEventStatusString: Record<WebSocketCloseEventStatusCode, string> = Object.freeze({
-  1000: 'Normal Closure',
-  1001: 'Going Away',
-  1002: 'Protocol Error',
-  1003: 'Unsupported Frame Data',
-  1004: 'Reserved',
-  1005: 'No Status Received',
-  1006: 'Abnormal Closure',
-  1007: 'Invalid Frame Payload Data',
-  1008: 'Policy Violation',
-  1009: 'Message Too Large',
-  1010: 'Missing Extension',
-  1011: 'Server Internal Error',
-  1012: 'Service Restart',
-  1013: 'Try Again Later',
-  1014: 'Bad Gateway',
-  1015: 'TLS Handshake'
-});
+export const WebSocketCloseEventStatusString: Record<WebSocketCloseEventStatusCode, string> =
+  Object.freeze({
+    1000: 'Normal Closure',
+    1001: 'Going Away',
+    1002: 'Protocol Error',
+    1003: 'Unsupported Frame Data',
+    1004: 'Reserved',
+    1005: 'No Status Received',
+    1006: 'Abnormal Closure',
+    1007: 'Invalid Frame Payload Data',
+    1008: 'Policy Violation',
+    1009: 'Message Too Large',
+    1010: 'Missing Extension',
+    1011: 'Server Internal Error',
+    1012: 'Service Restart',
+    1013: 'Try Again Later',
+    1014: 'Bad Gateway',
+    1015: 'TLS Handshake',
+  });
 
 export enum WebSocketCloseEventStatusCode {
   CLOSE_NORMAL = 1000,
@@ -33,9 +34,9 @@ export enum WebSocketCloseEventStatusCode {
   CLOSE_SERVICE_RESTART = 1012,
   CLOSE_TRY_AGAIN_LATER = 1013,
   CLOSE_BAD_GATEWAY = 1014,
-  CLOSE_TLS_HANDSHAKE = 1015
+  CLOSE_TLS_HANDSHAKE = 1015,
 }
 
 export interface WSError extends Error {
-  code?: string
+  code?: string;
 }