Added startTyping stopTyping and createChannel

This commit is contained in:
Amish Shah
2015-12-05 17:21:32 +00:00
parent 10442e5634
commit eb500ecd24
5 changed files with 30 additions and 0 deletions

View File

@@ -53,4 +53,12 @@ export default class TextChannel extends ServerChannel{
getLogs() {
return this.client.getChannelLogs.apply(this.client, reg(this, arguments));
}
startTyping() {
return this.client.startTyping.apply(this.client, reg(this, arguments));
}
stopTyping() {
return this.client.startTyping.apply(this.client, reg(this, arguments));
}
}