mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-12 04:14:52 +00:00
9 lines
163 B
TypeScript
9 lines
163 B
TypeScript
namespace Entity {
|
|
export type Emoji = {
|
|
shortcode: string
|
|
static_url: string
|
|
url: string
|
|
visible_in_picker: boolean
|
|
category?: string
|
|
}
|
|
}
|