mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 12:33:30 +01:00
Added channel.delete()
This commit is contained in:
@@ -19,6 +19,10 @@ var Channel = (function (_Equality) {
|
|||||||
this.client = client;
|
this.client = client;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Channel.prototype["delete"] = function _delete() {
|
||||||
|
return this.client.internal.deleteChannel(this);
|
||||||
|
};
|
||||||
|
|
||||||
return Channel;
|
return Channel;
|
||||||
})(Equality);
|
})(Equality);
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,10 @@ class Channel extends Equality{
|
|||||||
this.client = client;
|
this.client = client;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
delete(){
|
||||||
|
return this.client.internal.deleteChannel(this);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = Channel;
|
module.exports = Channel;
|
||||||
Reference in New Issue
Block a user