]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/accounts/follow.model.ts
Rename Pod -> Server
[github/Chocobozzz/PeerTube.git] / shared / models / accounts / follow.model.ts
1 export type FollowState = 'pending' | 'accepted'
2
3 export interface AccountFollow {
4 id: number
5 name: string
6 score?: number // Used for followers
7 host: string
8 }