mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			315 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			315 B
		
	
	
	
		
			TypeScript
		
	
	
import { Actor } from './actor.model'
 | 
						|
import { Avatar } from '../avatars'
 | 
						|
 | 
						|
export interface Account extends Actor {
 | 
						|
  displayName: string
 | 
						|
  description: string
 | 
						|
 | 
						|
  userId?: number
 | 
						|
}
 | 
						|
 | 
						|
export interface AccountSummary {
 | 
						|
  id: number
 | 
						|
  name: string
 | 
						|
  displayName: string
 | 
						|
  url: string
 | 
						|
  host: string
 | 
						|
  avatar?: Avatar
 | 
						|
}
 |