mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 11:40:41 +00:00
Webpack build for branch master: 5cad25ea69
This commit is contained in:
parent
9b7b9f5f67
commit
69e9ea2043
2 changed files with 12 additions and 3 deletions
|
|
@ -7882,7 +7882,7 @@ class Guild {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The `@everyone` Role of the guild
|
* The `@everyone` role of the guild
|
||||||
* @type {Role}
|
* @type {Role}
|
||||||
* @readonly
|
* @readonly
|
||||||
*/
|
*/
|
||||||
|
|
@ -7890,6 +7890,15 @@ class Guild {
|
||||||
return this.roles.get(this.id);
|
return this.roles.get(this.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The client user as a GuildMember of this guild
|
||||||
|
* @type {?GuildMember}
|
||||||
|
* @readonly
|
||||||
|
*/
|
||||||
|
get me() {
|
||||||
|
return this.members.get(this.client.user.id);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetches a collection of roles in the current guild sorted by position
|
* Fetches a collection of roles in the current guild sorted by position
|
||||||
* @type {Collection<Snowflake, Role>}
|
* @type {Collection<Snowflake, Role>}
|
||||||
|
|
@ -11964,7 +11973,7 @@ class ClientDataResolver {
|
||||||
* Data that resolves to give a GuildMember object. This can be:
|
* Data that resolves to give a GuildMember object. This can be:
|
||||||
* * A GuildMember object
|
* * A GuildMember object
|
||||||
* * A User object
|
* * A User object
|
||||||
* @typedef {Guild} GuildMemberResolvable
|
* @typedef {GuildMember|User} GuildMemberResolvable
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
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