From 31a3a86ebccf7db299588e9899d20c19dab80710 Mon Sep 17 00:00:00 2001 From: Sugden <28943913+NotSugden@users.noreply.github.com> Date: Fri, 28 Feb 2020 16:43:11 +0000 Subject: [PATCH] docs(MessageEmbed): document `article` embed type (#3846) --- src/structures/MessageEmbed.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/structures/MessageEmbed.js b/src/structures/MessageEmbed.js index b5ce08b26..cad60d756 100644 --- a/src/structures/MessageEmbed.js +++ b/src/structures/MessageEmbed.js @@ -14,11 +14,12 @@ class MessageEmbed { setup(data) { // eslint-disable-line complexity /** * The type of this embed, either: + * * `rich` - a rich embed * * `image` - an image embed * * `video` - a video embed * * `gifv` - a gifv embed + * * `article` - an article embed * * `link` - a link embed - * * `rich` - a rich embed * @type {string} */ this.type = data.type;