block-status.model.ts 251 B

123456789101112131415
  1. export interface BlockStatus {
  2. accounts: {
  3. [ handle: string ]: {
  4. blockedByServer: boolean
  5. blockedByUser?: boolean
  6. }
  7. }
  8. hosts: {
  9. [ host: string ]: {
  10. blockedByServer: boolean
  11. blockedByUser?: boolean
  12. }
  13. }
  14. }