mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
9 lines
158 B
TypeScript
9 lines
158 B
TypeScript
import { Account } from '../actors'
|
|
|
|
export interface ServerBlock {
|
|
byAccount: Account
|
|
blockedServer: {
|
|
host: string
|
|
}
|
|
createdAt: Date | string
|
|
}
|