server/types/mastodon/emoji.ts

8 lines
144 B
TypeScript
Raw Normal View History

2024-04-14 12:53:21 +02:00
export type Emoji = {
2024-04-07 07:30:49 +02:00
shortcode: string;
static_url: string;
url: string;
visible_in_picker: boolean;
category?: string;
2024-04-14 12:53:21 +02:00
};