9 lines
150 B
TypeScript
9 lines
150 B
TypeScript
namespace FriendicaEntity {
|
|
export type Emoji = {
|
|
shortcode: string
|
|
static_url: string
|
|
url: string
|
|
visible_in_picker: boolean
|
|
}
|
|
}
|