1
0
Fork 0
peertube/shared/models/accounts/follow.model.ts
2017-11-27 19:40:51 +01:00

8 lines
167 B
TypeScript

export type FollowState = 'pending' | 'accepted'
export interface AccountFollow {
id: number
name: string
score?: number // Used for followers
host: string
}