7e9334c34
7a7724e66
608624252
1 2
3
4 5 6
7 8 9 10 11
12
import { Account } from './account.model' export type FollowState = 'pending' | 'accepted' export interface AccountFollow { id: number follower: Account following: Account state: FollowState createdAt: Date updatedAt: Date }