From ae37d202a53a05e8bba4d6df9016d0f0a7682c6b Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Wed, 30 Jun 2021 06:21:24 +0100 Subject: [PATCH] types(CommandInteraction): Readd followUp type (#5974) --- typings/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/index.d.ts b/typings/index.d.ts index b8f3e4064..f552a55ff 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -563,6 +563,7 @@ declare module 'discord.js' { public deleteReply(): Promise; public editReply(options: string | MessagePayload | WebhookEditMessageOptions): Promise; public fetchReply(): Promise; + public followUp(options: string | MessagePayload | InteractionReplyOptions): Promise; public reply( options: string | MessagePayload | (InteractionReplyOptions & { fetchReply: true }), ): Promise;