.addStringOption((options) =>
options
.setName("say")
.setDescription("greetings?")
.setMinLength(1)
.setMaxLength(100)
.setChoices(
{
name: "choice 1",
value: "hello",
},
{
name: "choice 2",
value: "hi",
},
{
name: "choice 3",
value: "hallo",
},
)
.setRequired(true),
);
.addStringOption((options) =>
options
.setName("say")
.setDescription("greetings?")
.setMinLength(1)
.setMaxLength(100)
.setChoices(
{
name: "choice 1",
value: "hello",
},
{
name: "choice 2",
value: "hi",
},
{
name: "choice 3",
value: "hallo",
},
)
.setRequired(true),
);