From 042e071a64b7c18f10b5aedeb0054b5ff70cf166 Mon Sep 17 00:00:00 2001 From: Ashley Meadows <1327452+itsa-sh@users.noreply.github.com> Date: Tue, 17 Nov 2020 21:05:03 +0000 Subject: [PATCH] fix(MessageReaction): add client property to typings (#5003) close #5002 Co-authored-by: Ashley Meadows --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index 7322dc62f..8cc90bb5f 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1165,6 +1165,7 @@ declare module 'discord.js' { constructor(client: Client, data: object, message: Message); private _emoji: GuildEmoji | ReactionEmoji; + public readonly client: Client; public count: number | null; public readonly emoji: GuildEmoji | ReactionEmoji; public me: boolean;