mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
15 lines
251 B
TypeScript
15 lines
251 B
TypeScript
export interface BlockStatus {
|
|
accounts: {
|
|
[ handle: string ]: {
|
|
blockedByServer: boolean
|
|
blockedByUser?: boolean
|
|
}
|
|
}
|
|
|
|
hosts: {
|
|
[ host: string ]: {
|
|
blockedByServer: boolean
|
|
blockedByUser?: boolean
|
|
}
|
|
}
|
|
}
|