UNPKG

@cutls/megalodon

Version:

Mastodon, Pleroma, Misskey API client for node.js and browser

11 lines (10 loc) 246 B
import { Emoji, EmojiKeyValue } from './emoji.js'; export type User = { id: string; name: string; username: string; host: string | null; avatarUrl: string; avatarColor: string; emojis: Array<Emoji> | EmojiKeyValue; };