{"version":3,"file":"AttachmentBuilder.mjs","sourceRoot":"","sources":["../../src/basic/AttachmentBuilder.mts"],"names":[],"mappings":"AAAA,8EAA8E;AAC9E,MAAM,OAAO,iBAAiB;IAK1B,YAAY,IAAY,EAAE,IAAY,EAAE,WAAoB;QAJ5D;;;;;WAAa;QACb;;;;;WAAa;QACb;;;;;WAAqB;QAGjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC;QACjB,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;IACnC,CAAC;CACJ;AAED,eAAe,iBAAiB,CAAC","sourcesContent":["/** A class for sending an attachment to discord (eg for interaction reply) */\nexport class AttachmentBuilder {\n    file: Buffer;\n    name: string;\n    description?: string;\n\n    constructor(file: Buffer, name: string, description?: string) {\n        this.file = file;\n        this.name = name;\n        this.description = description;\n    }\n}\n\nexport default AttachmentBuilder;\n"]}