iceshrimp/packages/megalodon/src/misskey/entities/emoji.ts
2023-07-06 02:16:51 +00:00

9 lines
161 B
TypeScript

namespace MisskeyEntity {
export type Emoji = {
name: string
host: string | null
url: string
aliases: Array<string>
category: string
}
}