This commit is contained in:
Travis CI 2016-12-10 03:08:21 +00:00
parent b27ae5168c
commit ce0ed306e0
2 changed files with 35 additions and 12 deletions

View file

@ -9333,18 +9333,18 @@ class MessageEmbed {
}
setup(data) {
/**
* The title of this embed, if there is one
* @type {?string}
*/
this.title = data.title;
/**
* The type of this embed
* @type {string}
*/
this.type = data.type;
/**
* The title of this embed, if there is one
* @type {?string}
*/
this.title = data.title;
/**
* The description of this embed, if there is one
* @type {?string}
@ -9357,6 +9357,12 @@ class MessageEmbed {
*/
this.url = data.url;
/**
* The color of the embed
* @type {number}
*/
this.color = data.color;
/**
* The fields of this embed
* @type {MessageEmbedField[]}
@ -9402,6 +9408,17 @@ class MessageEmbed {
get createdAt() {
return new Date(this.createdTimestamp);
}
/**
* The hexadecimal version of the embed color, with a leading hash.
* @type {string}
* @readonly
*/
get hexColor() {
let col = this.color.toString(16);
while (col.length < 6) col = `0${col}`;
return `#${col}`;
}
}
/**
@ -9500,6 +9517,12 @@ class MessageEmbedAuthor {
* @type {string}
*/
this.url = data.url;
/**
* The icon URL of this author
* @type {string}
*/
this.iconURL = data.icon_url;
}
}
@ -9563,7 +9586,7 @@ class MessageEmbedFooter {
* The icon URL of this footer
* @type {string}
*/
this.iconUrl = data.icon_url;
this.iconURL = data.icon_url;
/**
* The proxy icon URL of this footer

10
discord.indev.min.js vendored

File diff suppressed because one or more lines are too long