mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 11:40:41 +00:00
Webpack build for branch 11.3-dev: 96e88f3cef
This commit is contained in:
parent
c3280b2d3c
commit
ebbde21e26
1 changed files with 3 additions and 3 deletions
|
|
@ -8913,7 +8913,7 @@ class Guild {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch all webhooks for the guild.
|
* Fetch all webhooks for the guild.
|
||||||
* @returns {Collection<Snowflake, Webhook>}
|
* @returns {Promise<Collection<Snowflake, Webhook>>}
|
||||||
* @example
|
* @example
|
||||||
* // Fetch webhooks
|
* // Fetch webhooks
|
||||||
* guild.fetchWebhooks()
|
* guild.fetchWebhooks()
|
||||||
|
|
@ -8926,7 +8926,7 @@ class Guild {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fetch available voice regions.
|
* Fetch available voice regions.
|
||||||
* @returns {Collection<string, VoiceRegion>}
|
* @returns {Promise<Collection<string, VoiceRegion>>}
|
||||||
* @example
|
* @example
|
||||||
* // Fetch voice regions
|
* // Fetch voice regions
|
||||||
* guild.fetchVoiceRegions()
|
* guild.fetchVoiceRegions()
|
||||||
|
|
@ -9168,7 +9168,7 @@ class Guild {
|
||||||
* @example
|
* @example
|
||||||
* // Edit the guild AFK channel
|
* // Edit the guild AFK channel
|
||||||
* guild.setAFKChannel(channel)
|
* guild.setAFKChannel(channel)
|
||||||
* .then(g => console.log(`Updated guild AFK channel to ${g.afkChannel}`))
|
* .then(g => console.log(`Updated guild AFK channel to ${g.afkChannel.name}`))
|
||||||
* .catch(console.error);
|
* .catch(console.error);
|
||||||
*/
|
*/
|
||||||
setAFKChannel(afkChannel, reason) {
|
setAFKChannel(afkChannel, reason) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue