PeerTube_original/shared/models/job.model.ts
2017-11-27 19:40:52 +01:00

3 lines
131 B
TypeScript

export type JobState = 'pending' | 'processing' | 'error' | 'success'
export type JobCategory = 'transcoding' | 'activitypub-http'