13 lines
247 B
TypeScript
13 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
|
|
}
|