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

@@ -82,6 +82,14 @@ export default class User extends Equality{
return this.client.sendFile.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));
}
addTo(role, callback) {
return this.client.addMemberToRole.apply(this.client, [this, role, callback]);
}