diff --git a/src/structures/MessageAttachment.js b/src/structures/MessageAttachment.js index 90ae4bbc2..cce6e487b 100644 --- a/src/structures/MessageAttachment.js +++ b/src/structures/MessageAttachment.js @@ -11,6 +11,10 @@ class MessageAttachment { */ constructor(attachment, name = null, data) { this.attachment = attachment; + /** + * The name of this attachment + * @type {?string} + */ this.name = name; if (data) this._patch(data); }