initial commit
This commit is contained in:
20
projects/mastodon-api/src/lib/interfaces/public/account.ts
Normal file
20
projects/mastodon-api/src/lib/interfaces/public/account.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
import {List} from "./list";
|
||||
|
||||
export interface Field {
|
||||
name: string;
|
||||
value: string;
|
||||
verified_at: Date;
|
||||
}
|
||||
|
||||
export interface Account {
|
||||
id: string;
|
||||
username: string;
|
||||
acct: string;
|
||||
url: string;
|
||||
displayName: string;
|
||||
note: string;
|
||||
avatar: string;
|
||||
avatarStatic: string;
|
||||
fields: Field[];
|
||||
lists: List[];
|
||||
}
|
||||
Reference in New Issue
Block a user