From 3f44320bbe23f5de829fdad0e19f4381f634ef62 Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Sat, 22 Sep 2018 11:45:03 +0200 Subject: [PATCH] docs(MessageAttachment): redocument name property --- src/structures/MessageAttachment.js | 4 ++++ 1 file changed, 4 insertions(+) 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); }