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

9 lines
167 B
TypeScript
Raw Normal View History

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