From a4d09ab0a8c39d743673d9d6ae93b3898e7af0b1 Mon Sep 17 00:00:00 2001 From: Shubham Parihar Date: Sat, 3 Apr 2021 18:31:20 +0530 Subject: [PATCH] types: remove typings for Client#disconnect event (#5469) --- typings/index.d.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index dbe0877ab..6ac4ec8a2 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -418,7 +418,6 @@ declare module 'discord.js' { VOICE_BROADCAST_UNSUBSCRIBE: 'unsubscribe'; TYPING_START: 'typingStart'; WEBHOOKS_UPDATE: 'webhookUpdate'; - DISCONNECT: 'disconnect'; RECONNECTING: 'reconnecting'; ERROR: 'error'; WARN: 'warn'; @@ -2391,7 +2390,6 @@ declare module 'discord.js' { channelUpdate: [oldChannel: Channel, newChannel: Channel]; debug: [message: string]; warn: [message: string]; - disconnect: [closeEvent: any, status: number]; emojiCreate: [emoji: GuildEmoji]; emojiDelete: [emoji: GuildEmoji]; emojiUpdate: [oldEmoji: GuildEmoji, newEmoji: GuildEmoji];