import { EmbedBuilder } from "discord.js"; declare enum Emoji { GOOD = "https://res.cloudinary.com/zs1l3nt/image/upload/icons/check.png", BAD = "https://res.cloudinary.com/zs1l3nt/image/upload/icons/cross.png" } export default class ResponseBuilder { /** * The emoji to show on the embed */ readonly emoji: Emoji; /** * The message to show on the embed */ readonly content: string; private constructor(); /** * Creates a ResponseBuilder with a green tick emoji * * @param content The message that the embed should show * @returns ResponseBuilder */ static good(content: string): ResponseBuilder; /** * Creates a ResponseBuilder with a red cross emoji * * @param content The message that the embed should show * @returns ResponseBuilder */ static bad(content: string): ResponseBuilder; /** * Creates a EmbedBuilder with the data from the ResponseBuilder * * @returns EmbedBuilder with the content and emoji */ build(): EmbedBuilder; } export {};