From 5842e35881755350764b557d66b475c2c03f249a Mon Sep 17 00:00:00 2001 From: iCrawl Date: Tue, 29 Jun 2021 23:38:23 +0200 Subject: [PATCH] fix(Typings): erronous RawMessage --- typings/index.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index eb0f3044b..b8f3e4064 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -558,7 +558,7 @@ declare module 'discord.js' { public options: Collection; public replied: boolean; public webhook: InteractionWebhook; - public defer(options?: InteractionDeferOptions & { fetchReply: true }): Promise; + public defer(options?: InteractionDeferOptions & { fetchReply: true }): Promise; public defer(options?: InteractionDeferOptions): Promise; public deleteReply(): Promise; public editReply(options: string | MessagePayload | WebhookEditMessageOptions): Promise; @@ -1420,9 +1420,9 @@ declare module 'discord.js' { public message: Message | APIMessage; public replied: boolean; public webhook: InteractionWebhook; - public defer(options?: InteractionDeferOptions & { fetchReply: true }): Promise; + public defer(options?: InteractionDeferOptions & { fetchReply: true }): Promise; public defer(options?: InteractionDeferOptions): Promise; - public deferUpdate(options?: InteractionDeferUpdateOptions & { fetchReply: true }): Promise; + public deferUpdate(options?: InteractionDeferUpdateOptions & { fetchReply: true }): Promise; public deferUpdate(options?: InteractionDeferUpdateOptions): Promise; public deleteReply(): Promise; public editReply(options: string | MessagePayload | WebhookEditMessageOptions): Promise;