1
0
Fork 0
peertube/shared/models/accounts/follow.model.ts

9 lines
167 B
TypeScript
Raw Normal View History

2017-11-13 11:39:41 -05:00
export type FollowState = 'pending' | 'accepted'
2017-11-15 05:00:25 -05:00
export interface AccountFollow {
id: number
name: string
score?: number // Used for followers
host: string
}