server/types/entities/emoji.ts

8 lines
134 B
TypeScript
Raw Normal View History

2023-09-12 22:48:10 +02:00
export interface APIEmoji {
2023-09-11 05:31:08 +02:00
shortcode: string;
static_url: string;
url: string;
visible_in_picker: boolean;
category?: string;
2023-09-11 05:46:20 +02:00
}