Interface APIApplicationCommandInteractionDataSubcommandGroupOption<Type>

interface APIApplicationCommandInteractionDataSubcommandGroupOption<
    Type extends InteractionType = InteractionType,
> {
    name: string;
    options: APIApplicationCommandInteractionDataSubcommandOption<Type>[];
    type: SubcommandGroup;
}

Type Parameters

Properties

Properties

name: string