Files
discordeno/helpers/emojis/emojiUrl.ts
T
2022-02-11 09:49:53 +00:00

7 lines
242 B
TypeScript

import { Bot } from "../../bot.ts";
/** Creates a url to the emoji from the Discord CDN. */
export function emojiUrl(bot: Bot, id: bigint, animated = false) {
return `https://cdn.discordapp.com/emojis/${id}.${animated ? "gif" : "png"}`;
}