aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/accounts/follow.model.ts
blob: 8094634c1ed76c758f4a6e44b3c2484d30116f6e (plain) (blame)
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
}