mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			412 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			412 B
		
	
	
	
		
			TypeScript
		
	
	
import { SearchTargetQuery } from './search-target-query.model'
 | 
						|
 | 
						|
export interface VideoPlaylistsSearchQuery extends SearchTargetQuery {
 | 
						|
  search?: string
 | 
						|
 | 
						|
  start?: number
 | 
						|
  count?: number
 | 
						|
  sort?: string
 | 
						|
 | 
						|
  host?: string
 | 
						|
 | 
						|
  // UUIDs or short UUIDs
 | 
						|
  uuids?: string[]
 | 
						|
}
 | 
						|
 | 
						|
export interface VideoPlaylistsSearchQueryAfterSanitize extends VideoPlaylistsSearchQuery {
 | 
						|
  start: number
 | 
						|
  count: number
 | 
						|
  sort: string
 | 
						|
}
 |