Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog committed Oct 20, 2023
1 parent 94ffbc5 commit 3559fcb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugins/websocket/guest-js/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ export default class WebSocket {
this.listeners = listeners;
}

static async connect(url: string, config?: ConnectionConfig): Promise<WebSocket> {
static async connect(
url: string,
config?: ConnectionConfig,
): Promise<WebSocket> {
const listeners: Array<(arg: Message) => void> = [];

const onMessage = new Channel<Message>();
Expand Down

0 comments on commit 3559fcb

Please sign in to comment.