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