本文整理汇总了TypeScript中discord.js.TextChannel类的典型用法代码示例。如果您正苦于以下问题:TypeScript js.TextChannel类的具体用法?TypeScript js.TextChannel怎么用?TypeScript js.TextChannel使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了js.TextChannel类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: rawReactionEmitter
export async function rawReactionEmitter(rawEvent: any, client: Client) {
if(!reactionEvents.hasOwnProperty(rawEvent.t)) {
return
}
const
{ d: data } = rawEvent,
user: User = client.users.get(data.user_id),
channel: TextChannel = client.channels.get(data.channel_id) as TextChannel
if(channel.messages.has(data.message_id)) {
return
}
const
message: Message = await channel.fetchMessage(data.message_id),
emojiKey: string = (data.emoji.id) ? `${data.emoji.name}:${data.emoji.id}` : data.emoji.name,
reaction = message.reactions.get(emojiKey)
client.emit(reactionEvents[rawEvent.t], reaction, user)
}
示例2:
channel.fetchMessages({ limit: numberOfMessages }).then((messages: Collection<string, Message>) => {
messages.forEach((message: Message) => {
message.delete()
})
channel.send(`Pruning ${numberOfMessages - 1} messages!`)
.then((reply: Message) => {
reply.delete(3000)
}
)
})
示例3: warn
warn(info: string, callback?: () => void) {
this.findInfo();
if (this.client.readyAt == null) { return; }
const embed = new RichEmbed();
embed.setAuthor("Weeb Bot");
embed.setColor("RED");
embed.addField("WARNING", info);
this.channel.send(embed);
}
示例4: info
info(info: string) {
this.findInfo();
if (this.client.readyAt == null) { return; }
this.channel.send(info);
}