Interface APIApplicationCommandInteractionDataSubcommandOption<Type>

interface APIApplicationCommandInteractionDataSubcommandOption<
    Type extends InteractionType = InteractionType,
> {
    name: string;
    options?: APIApplicationCommandInteractionDataBasicOption<Type>[];
    type: Subcommand;
}

Type Parameters

Properties

Properties

name: string