From 5b8f02243c22fefd0f73d46aa585e285b916bd13 Mon Sep 17 00:00:00 2001 From: Sugden <28943913+NotSugden@users.noreply.github.com> Date: Sat, 14 Mar 2020 10:41:05 +0000 Subject: [PATCH] typings(Client): remove typingStop event (#3919) --- typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 8ceee251b..1406cbb41 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -239,7 +239,7 @@ declare module 'discord.js' { public on(event: 'roleCreate' | 'roleDelete', listener: (role: Role) => void): this; public on(event: 'roleUpdate', listener: (oldRole: Role, newRole: Role) => void): this; public on( - event: 'typingStart' | 'typingStop', + event: 'typingStart', listener: (channel: Channel | PartialChannel, user: User | PartialUser) => void, ): this; public on(event: 'userUpdate', listener: (oldUser: User | PartialUser, newUser: User | PartialUser) => void): this; @@ -312,7 +312,7 @@ declare module 'discord.js' { public once(event: 'roleCreate' | 'roleDelete', listener: (role: Role) => void): this; public once(event: 'roleUpdate', listener: (oldRole: Role, newRole: Role) => void): this; public once( - event: 'typingStart' | 'typingStop', + event: 'typingStart', listener: (channel: Channel | PartialChannel, user: User | PartialUser) => void, ): this; public once(