mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 16:38:20 +01:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
export type Emoji = {
|
|
id: string;
|
|
shortcode: string;
|
|
static_url: string;
|
|
url: string;
|
|
visible_in_picker: boolean;
|
|
category?: string;
|
|
};
|