PeerTube/shared/models/accounts/follow.model.ts

9 lines
167 B
TypeScript
Raw Normal View History

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