Embed.footer - shysolocup/noscord.js GitHub Wiki
footer for the embed, usually used for extra info or a stat
type: String/Object
NOTE:
- footers can't use things like timestamps or headers
let a = new Embed({
description: "main info goes here"
footer: "extra info goes here"
});
let b = new Embed({
description: "main info goes here",
footer: {
text: "extra info goes here",
icon: "https://github.com/shysolocup/noscord.js/blob/main/assets/mini%20noscord.js.png"
}
});