initial commit

This commit is contained in:
2022-12-22 16:38:25 +01:00
commit a3f54bb537
143 changed files with 24386 additions and 0 deletions

View 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[];
}