]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - models/job.model.ts
Bumped to version v5.2.1
[github/Chocobozzz/PeerTube.git] / models / job.model.ts
1 export type JobState = 'pending' | 'processing' | 'error' | 'success'
2 export type JobCategory = 'transcoding' | 'activitypub-http'
3
4 export interface Job {
5 id: number
6 state: JobState
7 category: JobCategory
8 handlerName: string
9 handlerInputData: any
10 createdAt: Date
11 updatedAt: Date
12 }