mirror of https://github.com/Chocobozzz/PeerTube
10 lines
158 B
TypeScript
10 lines
158 B
TypeScript
|
import { Account } from '../actors'
|
||
|
|
||
|
export interface ServerBlock {
|
||
|
byAccount: Account
|
||
|
blockedServer: {
|
||
|
host: string
|
||
|
}
|
||
|
createdAt: Date | string
|
||
|
}
|