megalodon/megalodon/src/misskey/entities/emoji.ts
2023-02-04 02:14:55 +09:00

12 lines
202 B
TypeScript

namespace MisskeyEntity {
export type Emoji = {
name: string
host: string | null
url: string
aliases: Array<string>
}
export type EmojiKeyValue = {
[key: string]: string
}
}