I know I can send messages on a voice channel’s chat panel as a discord user like so :
But I have no idea how to achieve the same thing using discord.js, there’s absolutely nothing I can find about this on google, the official documentation or anywhere else??
For context, this is how I send messages on (for example) a text channel:
client.channels.cache.get("id_of_the_channel").send('Test message !')
So, how to do the same on those voice channels ?
>Solution :
VoiceChannel#send() is only available from v13.8.0, so you’ll need to upgrade your discord.js to use this feature.

