mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
Added start/stop typing listeners
This commit is contained in:
@@ -52,6 +52,13 @@ mybot.on("channelUpdate", function(oldChan, newChan){
|
||||
|
||||
});
|
||||
|
||||
mybot.on("startTyping", function(user, channel){
|
||||
console.log("start", user);
|
||||
});
|
||||
mybot.on("stopTyping", function(user, channel){
|
||||
console.log("stop", user);
|
||||
});
|
||||
|
||||
function dump(msg) {
|
||||
console.log(msg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user