megalodon
Version:
Fediverse API client for node.js and browser
27 lines (26 loc) • 624 B
TypeScript
import { Emoji } from './emoji';
import { Field } from './field';
import { Source } from './source';
export type Account = {
id: string;
username: string;
acct: string;
display_name: string;
discoverable?: boolean;
locked: boolean;
followers_count: number;
following_count: number;
statuses_count: number;
note: string;
url: string;
avatar: string;
created_at: string;
avatar_static: string;
bot: boolean;
emojis: Array<Emoji>;
fields: Array<Field>;
header: string;
header_static: string;
last_status_at: string | null;
source?: Source;
};