WebSocket.ts 201 B

1234567
  1. import { WebSocket as WSWebSocket } from "ws";
  2. export default class WebSocket extends WSWebSocket {
  3. public dispatch(name: string, ...args: any[]) {
  4. this.send(JSON.stringify([name, ...args]));
  5. }
  6. }