chore: lint

This commit is contained in:
Rajeh Taher
2025-11-19 16:18:13 +02:00
parent 235d7ec6f6
commit 50d410d117
11 changed files with 34 additions and 101 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ export class WebSocketClient extends AbstractSocketClient {
return this.socket?.readyState === WebSocket.CONNECTING
}
async connect(): Promise<void> {
connect() {
if (this.socket) {
return
}
@@ -40,7 +40,7 @@ export class WebSocketClient extends AbstractSocketClient {
}
}
async close(): Promise<void> {
close() {
if (!this.socket) {
return
}