fix: ensure graceful shutdown waits only for started stations stopping
[e-mobility-charging-stations-simulator.git] / src / types / WebSocket.ts
index 7d028afea0543ca4acf70f4c0864ca1a9357b16a..c0d0bd9d758c0f592ad01601446980ad85c7969d 100644 (file)
@@ -15,8 +15,8 @@ export const WebSocketCloseEventStatusString: Record<WebSocketCloseEventStatusCo
     1012: 'Service Restart',
     1013: 'Try Again Later',
     1014: 'Bad Gateway',
-    1015: 'TLS Handshake',
-  });
+    1015: 'TLS Handshake'
+  })
 
 export enum WebSocketCloseEventStatusCode {
   CLOSE_NORMAL = 1000,
@@ -38,5 +38,5 @@ export enum WebSocketCloseEventStatusCode {
 }
 
 export interface WSError extends Error {
-  code?: string;
+  code?: string
 }