mirror of
https://github.com/danbulant/discord.js
synced 2026-06-03 06:41:44 +00:00
docs(MessageEmbed): document article embed type (#3846)
This commit is contained in:
parent
6109669c97
commit
31a3a86ebc
1 changed files with 2 additions and 1 deletions
|
|
@ -14,11 +14,12 @@ class MessageEmbed {
|
||||||
setup(data) { // eslint-disable-line complexity
|
setup(data) { // eslint-disable-line complexity
|
||||||
/**
|
/**
|
||||||
* The type of this embed, either:
|
* The type of this embed, either:
|
||||||
|
* * `rich` - a rich embed
|
||||||
* * `image` - an image embed
|
* * `image` - an image embed
|
||||||
* * `video` - a video embed
|
* * `video` - a video embed
|
||||||
* * `gifv` - a gifv embed
|
* * `gifv` - a gifv embed
|
||||||
|
* * `article` - an article embed
|
||||||
* * `link` - a link embed
|
* * `link` - a link embed
|
||||||
* * `rich` - a rich embed
|
|
||||||
* @type {string}
|
* @type {string}
|
||||||
*/
|
*/
|
||||||
this.type = data.type;
|
this.type = data.type;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue