/// /// /// /// namespace Entity { export type Account = { id: string fqn?: string username: string acct: string display_name: string locked: boolean discoverable?: boolean group?: boolean | null noindex?: boolean | null suspended?: boolean | null limited?: 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 moved: Account | null fields: Array bot: boolean | null source?: Source role?: Role mute_expires_at?: string } }