video-channel.model.ts 427 B

1234567891011121314151617181920
  1. import { Actor } from '../../actors/actor.model'
  2. import { Account } from '../../actors/index'
  3. import { Avatar } from '../../avatars'
  4. export interface VideoChannel extends Actor {
  5. displayName: string
  6. description: string
  7. support: string
  8. isLocal: boolean
  9. ownerAccount?: Account
  10. }
  11. export interface VideoChannelSummary {
  12. id: number
  13. name: string
  14. displayName: string
  15. url: string
  16. host: string
  17. avatar?: Avatar
  18. }