UNPKG

@cutls/megalodon

Version:

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

28 lines (27 loc) 560 B
import { Emoji } from './emoji.js' import { Field } from './field.js' import { Source } from './source.js' export type Account = { id: string username: string acct: string display_name: string locked: boolean discoverable?: boolean group: boolean | null created_at: string followers_count: number following_count: number statuses_count: number note: string url: string avatar: string avatar_static: string header: string header_static: string emojis: Array<Emoji> moved: Account | null fields: Array<Field> bot: boolean source?: Source }