From 0cbb22f9a3741e1391e6c6b0432dd4f2d6c676ff Mon Sep 17 00:00:00 2001 From: rigormorrtiss Date: Thu, 27 May 2021 14:30:56 +0400 Subject: [PATCH] change: interactionTypes rename Button to MessageComponent (#993) --- src/types/interactions/interaction_types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types/interactions/interaction_types.ts b/src/types/interactions/interaction_types.ts index 5afcac139..561b6ee53 100644 --- a/src/types/interactions/interaction_types.ts +++ b/src/types/interactions/interaction_types.ts @@ -2,7 +2,7 @@ export enum DiscordInteractionTypes { Ping = 1, ApplicationCommand, - Button, + MessageComponent, } export type InteractionTypes = DiscordInteractionTypes;