docs(AttachmentBuilder): fix #8407 (#8421)

Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com>
This commit is contained in:
RedGuy12
2022-08-08 03:06:11 -06:00
committed by GitHub
parent e72b986939
commit 5b053cf82e

View File

@@ -8,7 +8,7 @@ const { basename, flatten } = require('../util/Util');
class AttachmentBuilder { class AttachmentBuilder {
/** /**
* @param {BufferResolvable|Stream} attachment The file * @param {BufferResolvable|Stream} attachment The file
* @param {APIAttachment} [data] Extra data * @param {AttachmentData} [data] Extra data
*/ */
constructor(attachment, data = {}) { constructor(attachment, data = {}) {
/** /**
@@ -108,3 +108,9 @@ module.exports = AttachmentBuilder;
* @external APIAttachment * @external APIAttachment
* @see {@link https://discord.com/developers/docs/resources/channel#attachment-object} * @see {@link https://discord.com/developers/docs/resources/channel#attachment-object}
*/ */
/**
* @typedef {Object} AttachmentData
* @property {string} [name] The name of the attachment
* @property {string} [description] The description of the attachment
*/