@notoiro/djs-button-pages
Version:
A simple yet powerful module for implementing customizable embed pages with buttons in Discord chat. Works only with Discord.js.
10 lines (9 loc) • 322 B
TypeScript
import { APIEmbed } from "discord.js";
/**
* Gets embed length.
* Includes author name, footer, fields, description and title.
* @param {APIEmbed} embed Embed which length should be counted.
* @returns {number} Embed length.
*/
declare function getEmbedLength(embed: APIEmbed): number;
export default getEmbedLength;