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

14 lines
247 B
TypeScript
Raw Normal View History

import { Actor } from './actor.model'
2017-11-20 05:19:23 -05:00
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
follower: Actor
following: Actor
score: number
2017-11-20 05:19:23 -05:00
state: FollowState
createdAt: Date
updatedAt: Date
2017-11-15 05:00:25 -05:00
}