From 6bfafa852f55f76aedc86bfc572fe690fe4698ca Mon Sep 17 00:00:00 2001 From: ITOH <72305210+itohatweb@users.noreply.github.com> Date: Tue, 13 Apr 2021 22:24:35 +0200 Subject: [PATCH] https://github.com/discord/discord-api-docs/pull/2684 --- .../interactions/application_command_interaction_data_option.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/types/interactions/application_command_interaction_data_option.ts b/src/types/interactions/application_command_interaction_data_option.ts index 80e9e3cad..2915656b4 100644 --- a/src/types/interactions/application_command_interaction_data_option.ts +++ b/src/types/interactions/application_command_interaction_data_option.ts @@ -4,6 +4,8 @@ import { DiscordApplicationCommandOptionTypes } from "./application_command_opti export interface ApplicationCommandInteractionDataOption { /** The name of the parameter */ name: string; + /** value of DiscordApplicationCommandOptionTypes */ + type: DiscordApplicationCommandOptionTypes; /** The value of the pair */ value?: DiscordApplicationCommandOptionTypes; /** Present if this option is a group or subcommand */