import { WebSocket as WS } from "ws";
class WebSocket extends WS {
constructor(address: string) {
super(address);
this.addEventListener("error", () => {});
}
}
天才なので勝ちました
import { WebSocket as WS } from "ws";
class WebSocket extends WS {
constructor(address: string) {
super(address);
this.addEventListener("error", () => {});
}
}
天才なので勝ちました
No replies yet.