initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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[];
|
||||
}
|
||||
Reference in New Issue
Block a user