mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 03:31:03 +00:00
Webpack build: 9e70d6279f
This commit is contained in:
parent
6dad6ca594
commit
c87eb5254f
1 changed files with 2 additions and 2 deletions
|
|
@ -4270,12 +4270,12 @@ class Guild {
|
||||||
* @example
|
* @example
|
||||||
* // see how many members will be pruned
|
* // see how many members will be pruned
|
||||||
* guild.pruneMembers(12, true)
|
* guild.pruneMembers(12, true)
|
||||||
* .then(pruned => console.log(`This will prune ${pruned} people!`);
|
* .then(pruned => console.log(`This will prune ${pruned} people!`))
|
||||||
* .catch(console.error);
|
* .catch(console.error);
|
||||||
* @example
|
* @example
|
||||||
* // actually prune the members
|
* // actually prune the members
|
||||||
* guild.pruneMembers(12)
|
* guild.pruneMembers(12)
|
||||||
* .then(pruned => console.log(`I just pruned ${pruned} people!`);
|
* .then(pruned => console.log(`I just pruned ${pruned} people!`))
|
||||||
* .catch(console.error);
|
* .catch(console.error);
|
||||||
*/
|
*/
|
||||||
pruneMembers(days, dry = false) {
|
pruneMembers(days, dry = false) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue