TypeScript error when adding ActionRow to reply
I'm trying to create a basic ActionRow with a link button, but I get this weird TypeScript error when doing so. I don't see what I've done wrong.
3 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!Tag suggestion for @Spaxter:
In TypeScript the
ActionRowBuilder
class has a generic type parameter that specifies the type of component the action row holds:
Ohh I see, thank you