From 222f62fdc07cc239014e70700fe48a23dbc42104 Mon Sep 17 00:00:00 2001 From: ITOH Date: Thu, 30 Sep 2021 20:35:59 +0200 Subject: [PATCH] feat(types): add DiscordInteractionTypes.ApplicationCommandAutocomplete --- src/types/interactions/interaction_types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/types/interactions/interaction_types.ts b/src/types/interactions/interaction_types.ts index 561b6ee53..d5f280921 100644 --- a/src/types/interactions/interaction_types.ts +++ b/src/types/interactions/interaction_types.ts @@ -3,6 +3,7 @@ export enum DiscordInteractionTypes { Ping = 1, ApplicationCommand, MessageComponent, + ApplicationCommandAutocomplete, } export type InteractionTypes = DiscordInteractionTypes;