]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/blocklist/server-block.model.ts
Fix scroll menu on touch devices
[github/Chocobozzz/PeerTube.git] / shared / models / blocklist / server-block.model.ts
1 import { Account } from '../actors'
2
3 export interface ServerBlock {
4 byAccount: Account
5 blockedServer: {
6 host: string
7 }
8 createdAt: Date | string
9 }