aboutsummaryrefslogtreecommitdiffhomepage
path: root/packages/models/src/moderation/account-block.model.ts
blob: 2d070da62fe046e34fa90cf77bd8e9068d4480cd (plain) (blame)
1
2
3
4
5
6
7
import { Account } from '../actors/index.js'

export interface AccountBlock {
  byAccount: Account
  blockedAccount: Account
  createdAt: Date | string
}