Interface ApplicationCommandOptionsChoices<T>

interface ApplicationCommandOptionsChoices<
    T extends ApplicationCommandOptionTypes = ApplicationCommandOptionTypes,
> {
    choices: { name: string; value: T extends STRING ? string : number }[];
}

Type Parameters

Properties

Properties

choices: { name: string; value: T extends STRING ? string : number }[]