3fd2b55406
This reverts commit 89eea5df52.
10 lines
163 B
TypeScript
10 lines
163 B
TypeScript
namespace Entity {
|
|
export type Emoji = {
|
|
shortcode: string
|
|
static_url: string
|
|
url: string
|
|
visible_in_picker: boolean
|
|
category?: string
|
|
}
|
|
}
|