Property 'send' does not exist on type *channel types*
I am following the guide on setting up a basic command using sapphire, but using channel.send throws an odd error.
Solution:Jump to solution
Nvm I needed to type guard it with
if (!message.channel.isSendable()) return;
1 Reply
Solution
Nvm I needed to type guard it with
if (!message.channel.isSendable()) return;