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

9 lines
167 B
TypeScript

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