Embed.author - shysolocup/noscord.js GitHub Wiki

the author of the embed, usually used for users but it can be used for other things too
type: String/Object
NOTE:

  • authors can't use things like timestamps or headers

let a = new Embed({
    description: "main info goes here",

    author: "noscord.JS"
});


let b = new Embed({
    description: "main info goes here",

    author: { 
        name: "noscord.JS", 
        icon: "https://github.com/shysolocup/noscord.js/blob/main/assets/mini%20noscord.js.png" 
    }
});


⚠️ **GitHub.com Fallback** ⚠️