npm.io
1.0.0 • Published 3 years ago

@antibot/embeds

Licence
MIT
Version
1.0.0
Deps
1
Size
27 kB
Vulns
0
Weekly
0

embeds

A module for Discord embeds! Using this module you can send embed data.

Docs

https://antibot-team.github.io/embeds/

const { DiscordEmbed, EmbedColor } = require("@antibot/embeds");
const embed = new DiscordEmbed()
  .setTitle("Hi")
  .setDescription("This is a very cool embed!")
  .setColor(EmbedColor.BLUE)
  .setFooter({
    text: "https://antibot.xyz",
  });