mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			360 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			360 B
		
	
	
	
		
			TypeScript
		
	
	
| export type JobState = 'active' | 'complete' | 'failed' | 'inactive' | 'delayed'
 | |
| 
 | |
| export type JobType = 'activitypub-http-unicast' |
 | |
|   'activitypub-http-broadcast' |
 | |
|   'activitypub-http-fetcher' |
 | |
|   'video-file' |
 | |
|   'email'
 | |
| 
 | |
| export interface Job {
 | |
|   id: number
 | |
|   state: JobState
 | |
|   type: JobType
 | |
|   data: any,
 | |
|   error: any,
 | |
|   createdAt: Date
 | |
|   updatedAt: Date
 | |
| }
 |