mirror of
https://github.com/versia-pub/api.git
synced 2025-12-06 08:28:19 +01:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
export type Emoji = {
|
|
id: string;
|
|
shortcode: string;
|
|
static_url: string;
|
|
url: string;
|
|
visible_in_picker: boolean;
|
|
global: boolean;
|
|
category?: string;
|
|
description?: string;
|
|
};
|