mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			30 lines
		
	
	
		
			414 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			414 B
		
	
	
	
		
			TypeScript
		
	
	
import { ActivityIconObject } from './common-objects'
 | 
						|
 | 
						|
export interface PlaylistObject {
 | 
						|
  id: string
 | 
						|
  type: 'Playlist'
 | 
						|
 | 
						|
  name: string
 | 
						|
 | 
						|
  content: string
 | 
						|
  mediaType: 'text/markdown'
 | 
						|
 | 
						|
  uuid: string
 | 
						|
 | 
						|
  totalItems: number
 | 
						|
  attributedTo: string[]
 | 
						|
 | 
						|
  icon?: ActivityIconObject
 | 
						|
 | 
						|
  published: string
 | 
						|
  updated: string
 | 
						|
 | 
						|
  orderedItems?: string[]
 | 
						|
 | 
						|
  partOf?: string
 | 
						|
  next?: string
 | 
						|
  first?: string
 | 
						|
 | 
						|
  to?: string[]
 | 
						|
}
 |