1import type { Attachment } from "discord.js"; 2 3export const download = async (file: Attachment): Promise<File> => 4 new File( 5 [ 6 await fetch(file.url).then((res) => { 7 return res.blob(); 8 }), 9 ], 10 file.name, 11 { 12 type: file.contentType ?? "application/octet-stream", 13 } 14 );