APIApplicationCommandOptionWithAutocompleteOrChoicesWrapper

Signature

export type APIApplicationCommandOptionWithAutocompleteOrChoicesWrapper<Base extends APIApplicationCommandOptionBase<ApplicationCommandOptionType>, ChoiceType extends APIApplicationCommandOptionChoice> = (Base & {    autocomplete: true;    choices?: [    ];}) | (Base & {    autocomplete?: false;    choices?: ChoiceType[];});

Members

This export does not declare public properties or methods in the generated declaration file.