mirror of
https://github.com/danbulant/discord.js
synced 2026-06-20 23:21:04 +00:00
Webpack build for branch master: 104f3397af
This commit is contained in:
parent
e3b7a5e271
commit
deaa46c99d
2 changed files with 11 additions and 2 deletions
|
|
@ -4397,7 +4397,7 @@ class Guild {
|
|||
}
|
||||
|
||||
/**
|
||||
* The `#general` TextChannel of the server.
|
||||
* The `#general` TextChannel of the guild.
|
||||
* @type {TextChannel}
|
||||
* @readonly
|
||||
*/
|
||||
|
|
@ -4405,6 +4405,15 @@ class Guild {
|
|||
return this.channels.get(this.id);
|
||||
}
|
||||
|
||||
/**
|
||||
* The `@everyone` Role of the guild.
|
||||
* @type {Role}
|
||||
* @readonly
|
||||
*/
|
||||
get defaultRole() {
|
||||
return this.roles.get(this.id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the GuildMember form of a User object, if the user is present in the guild.
|
||||
* @param {UserResolvable} user The user that you want to obtain the GuildMember of
|
||||
|
|
|
|||
2
discord.master.min.js
vendored
2
discord.master.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue