mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 17:59:37 +02:00
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
import { Account } from '../actors'
|
|
|
|
export interface AccountBlock {
|
|
byAccount: Account
|
|
blockedAccount: Account
|
|
createdAt: Date | string
|
|
}
|