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

14 lines
247 B
TypeScript

import { Actor } from './actor.model'
export type FollowState = 'pending' | 'accepted'
export interface AccountFollow {
id: number
follower: Actor
following: Actor
score: number
state: FollowState
createdAt: Date
updatedAt: Date
}