This repository has been archived on 2024-11-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mastodon-apps/projects/mastodon-api/src/lib/interfaces/responses/get_account_response.ts
2022-12-22 16:38:25 +01:00

17 lines
312 B
TypeScript

export interface Field {
name: string;
value: string;
verified_at: Date;
}
export interface GetAccountResponse {
id: string;
username: string;
acct: string;
url: string;
display_name: string;
note: string;
avatar: string;
avatar_static: string;
fields: Field[];
}