24 lines
461 B
TypeScript
24 lines
461 B
TypeScript
|
export type IAccount = {
|
||
|
acct: string
|
||
|
avatar: string
|
||
|
avatar_static: string
|
||
|
bot: boolean
|
||
|
created_at: string
|
||
|
discoverable: boolean
|
||
|
display_name: string
|
||
|
followers_count: number
|
||
|
following_count: number
|
||
|
group: boolean
|
||
|
header: string
|
||
|
header_static: string
|
||
|
id: string
|
||
|
last_status_at: string
|
||
|
location: string
|
||
|
locked: boolean
|
||
|
note: string
|
||
|
statuses_count: number
|
||
|
url: string
|
||
|
username: string
|
||
|
verified: boolean
|
||
|
website: string
|
||
|
}
|