mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			427 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			427 B
		
	
	
	
		
			TypeScript
		
	
	
| import { Actor } from '../../actors/actor.model'
 | |
| import { Account } from '../../actors/index'
 | |
| import { Avatar } from '../../avatars'
 | |
| 
 | |
| export interface VideoChannel extends Actor {
 | |
|   displayName: string
 | |
|   description: string
 | |
|   support: string
 | |
|   isLocal: boolean
 | |
|   ownerAccount?: Account
 | |
| }
 | |
| 
 | |
| export interface VideoChannelSummary {
 | |
|   id: number
 | |
|   name: string
 | |
|   displayName: string
 | |
|   url: string
 | |
|   host: string
 | |
|   avatar?: Avatar
 | |
| }
 |