UNPKG

@cutls/megalodon

Version:

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

32 lines (31 loc) 646 B
import { Emoji } from './emoji' import { Field } from './field' import { Source } from './source' import { Role } from './role' export type Account = { id: string username: string acct: string display_name: string locked: boolean discoverable?: boolean suspended: 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 enable_rss?: boolean role?: Role mute_expires_at?: string }