ChannelService - shysolocup/noscord.js GitHub Wiki
service class for channel related methods if you're looking for specific channel types look to the Channel Types Guide |
|
JS | |
const { Client } = require('noscord.js');
const client = new Client();
client.import("channels");
client.on("ready", async () => {
let channel = await channels.get("put your id here");
channel.send("example");
}); |