1 2 3 4 5 6 7 8
export type FollowState = 'pending' | 'accepted' export interface AccountFollow { id: number name: string score?: number // Used for followers host: string }