mirror of https://github.com/Chocobozzz/PeerTube
8 lines
145 B
TypeScript
8 lines
145 B
TypeScript
|
import { Account } from '../actors'
|
||
|
|
||
|
export interface AccountBlock {
|
||
|
byAccount: Account
|
||
|
blockedAccount: Account
|
||
|
createdAt: Date | string
|
||
|
}
|