mirror of
https://github.com/danbulant/discord.js
synced 2026-07-05 19:20:42 +00:00
Webpack build for branch 11.1-dev: 28a29d5d9f
This commit is contained in:
parent
c75dd1f96f
commit
f09df677b6
2 changed files with 19 additions and 28 deletions
|
|
@ -13275,27 +13275,6 @@ const PartialGuild = __webpack_require__(52);
|
||||||
const PartialGuildChannel = __webpack_require__(53);
|
const PartialGuildChannel = __webpack_require__(53);
|
||||||
const Constants = __webpack_require__(0);
|
const Constants = __webpack_require__(0);
|
||||||
|
|
||||||
/*
|
|
||||||
{ max_age: 86400,
|
|
||||||
code: 'CG9A5',
|
|
||||||
guild:
|
|
||||||
{ splash: null,
|
|
||||||
id: '123123123',
|
|
||||||
icon: '123123123',
|
|
||||||
name: 'name' },
|
|
||||||
created_at: '2016-08-28T19:07:04.763368+00:00',
|
|
||||||
temporary: false,
|
|
||||||
uses: 0,
|
|
||||||
max_uses: 0,
|
|
||||||
inviter:
|
|
||||||
{ username: '123',
|
|
||||||
discriminator: '4204',
|
|
||||||
bot: true,
|
|
||||||
id: '123123123',
|
|
||||||
avatar: '123123123' },
|
|
||||||
channel: { type: 0, id: '123123', name: 'heavy-testing' } }
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents an invitation to a guild channel.
|
* Represents an invitation to a guild channel.
|
||||||
* <warn>The only guaranteed properties are `code`, `guild` and `channel`. Other properties can be missing.</warn>
|
* <warn>The only guaranteed properties are `code`, `guild` and `channel`. Other properties can be missing.</warn>
|
||||||
|
|
@ -13333,6 +13312,24 @@ class Invite {
|
||||||
*/
|
*/
|
||||||
this.presenceCount = data.approximate_presence_count;
|
this.presenceCount = data.approximate_presence_count;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The approximate total number of members of the guild this invite is for
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this.memberCount = data.approximate_member_count;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of text channels the guild this invite goes to has
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this.textChannelCount = data.guild.text_channel_count;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The number of voice channels the guild this invite goes to has
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this.voiceChannelCount = data.guild.voice_channel_count;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Whether or not this invite is temporary
|
* Whether or not this invite is temporary
|
||||||
* @type {boolean}
|
* @type {boolean}
|
||||||
|
|
@ -13345,12 +13342,6 @@ class Invite {
|
||||||
*/
|
*/
|
||||||
this.maxAge = data.max_age;
|
this.maxAge = data.max_age;
|
||||||
|
|
||||||
/**
|
|
||||||
* The approximate total number of members of the guild this invite is for
|
|
||||||
* @type {number}
|
|
||||||
*/
|
|
||||||
this.memberCount = data.approximate_member_count;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* How many times this invite has been used
|
* How many times this invite has been used
|
||||||
* @type {number}
|
* @type {number}
|
||||||
|
|
|
||||||
2
discord.11.1-dev.min.js
vendored
2
discord.11.1-dev.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue