mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 04:23:31 +01:00
docs(ThreadMember): fix docblock async return type (#10058)
This commit is contained in:
@@ -102,7 +102,7 @@ class ThreadMember extends Base {
|
|||||||
/**
|
/**
|
||||||
* Removes this member from the thread.
|
* Removes this member from the thread.
|
||||||
* @param {string} [reason] Reason for removing the member
|
* @param {string} [reason] Reason for removing the member
|
||||||
* @returns {ThreadMember}
|
* @returns {Promise<ThreadMember>}
|
||||||
*/
|
*/
|
||||||
async remove(reason) {
|
async remove(reason) {
|
||||||
await this.thread.members.remove(this.id, reason);
|
await this.thread.members.remove(this.id, reason);
|
||||||
|
|||||||
Reference in New Issue
Block a user