server/types/entities/emoji.ts

8 lines
129 B
TypeScript
Raw Normal View History

2023-09-11 05:31:08 +02:00
export type Emoji = {
shortcode: string;
static_url: string;
url: string;
visible_in_picker: boolean;
category?: string;
};