From 2ce5d4dc726112570e33f595c286b34c8893089f Mon Sep 17 00:00:00 2001 From: devnote-dev Date: Fri, 11 Nov 2022 15:36:25 +0000 Subject: [PATCH] fix(ws): remove unnecessary _send --- src/ws.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ws.ts b/src/ws.ts index 3adf607..ea04933 100644 --- a/src/ws.ts +++ b/src/ws.ts @@ -7,7 +7,6 @@ import http from './http'; export interface IShard { connect(): Promise; _heartbeat(): Promise; - _send(event: string, args?: string[]): void; destroy(): void; onDebug?: (data: any) => void; onRaw?: (payload: WebSocketPayload) => void;