mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-15 19:08:17 +00:00
7 lines
242 B
TypeScript
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"}`;
|
|
}
|