refactor(MessageEmbed): remove files (#5813)

* refactor(MessageEmbed): remove files

* fix: test
This commit is contained in:
Jan
2021-06-11 22:36:31 +02:00
committed by GitHub
parent a7ebb2145c
commit e3e466d3e5
4 changed files with 2 additions and 42 deletions

View File

@@ -23,7 +23,6 @@ class MessageEmbed {
* @property {Date|number} [timestamp] The timestamp of this embed
* @property {ColorResolvable} [color] The color of this embed
* @property {EmbedFieldData[]} [fields] The fields of this embed
* @property {Array<FileOptions|string|MessageAttachment>} [files] The files of this embed
* @property {Partial<MessageEmbedAuthor>} [author] The author of this embed
* @property {Partial<MessageEmbedThumbnail>} [thumbnail] The thumbnail of this embed
* @property {Partial<MessageEmbedImage>} [image] The image of this embed
@@ -222,12 +221,6 @@ class MessageEmbed {
proxyIconURL: data.footer.proxyIconURL || data.footer.proxy_icon_url,
}
: null;
/**
* The files of this embed
* @type {Array<FileOptions|string|MessageAttachment>}
*/
this.files = data.files || [];
}
/**
@@ -298,17 +291,6 @@ class MessageEmbed {
return this;
}
/**
* Sets the file to upload alongside the embed. This file can be accessed via `attachment://fileName.extension` when
* setting an embed image or author/footer icons. Multiple files can be attached.
* @param {Array<FileOptions|string|MessageAttachment>} files Files to attach
* @returns {MessageEmbed}
*/
attachFiles(files) {
this.files = this.files.concat(files);
return this;
}
/**
* Sets the author of this embed.
* @param {string} name The name of the author