1
0
Fork 0
peertube/shared/models/blocklist/server-block.model.ts
2018-10-16 16:41:36 +02:00

9 lines
158 B
TypeScript

import { Account } from '../actors'
export interface ServerBlock {
byAccount: Account
blockedServer: {
host: string
}
createdAt: Date | string
}