import type { CustomEmojiId } from "./CustomEmojiId"; import type { DbUrl } from "./DbUrl"; /** * A custom emoji. */ export type CustomEmoji = { id: CustomEmojiId; shortcode: string; image_url: DbUrl; alt_text: string; category: string; published_at: string; updated_at?: string; };