From 0fe5f8831662a8ba074c4d2e4dea851bed755841 Mon Sep 17 00:00:00 2001 From: Rodry <38259440+ImRodry@users.noreply.github.com> Date: Sun, 29 Aug 2021 13:22:53 +0100 Subject: [PATCH] types(MessageComponentInteraction): fix componentType (#6536) --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 56db0c14353e..6006d10491b8 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1251,7 +1251,7 @@ export class MessageComponentInteraction extends Interaction { public constructor(client: Client, data: RawMessageComponentInteractionData); public readonly channel: TextBasedChannels | null; public readonly component: MessageActionRowComponent | Exclude | null; - public componentType: MessageComponentType; + public componentType: Exclude; public customId: string; public deferred: boolean; public ephemeral: boolean | null;