From 53defb82e36108468e35077b887ee28b811891ab Mon Sep 17 00:00:00 2001 From: muchnameless <12682826+muchnameless@users.noreply.github.com> Date: Wed, 2 Mar 2022 10:41:56 +0100 Subject: [PATCH] types(InteractionResponseFields): add boolean properties (#7565) --- packages/discord.js/typings/index.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/discord.js/typings/index.d.ts b/packages/discord.js/typings/index.d.ts index b05a47090..5ba4c3708 100644 --- a/packages/discord.js/typings/index.d.ts +++ b/packages/discord.js/typings/index.d.ts @@ -325,6 +325,9 @@ export type GuildCacheMessage = CacheTypeReducer< >; export interface InteractionResponseFields { + deferred: boolean; + ephemeral: boolean | null; + replied: boolean; reply(options: InteractionReplyOptions & { fetchReply: true }): Promise>; reply(options: string | MessagePayload | InteractionReplyOptions): Promise; deleteReply(): Promise;