PeerTube/shared/models/job.model.ts

3 lines
131 B
TypeScript
Raw Normal View History

2017-06-16 08:36:18 +00:00
export type JobState = 'pending' | 'processing' | 'error' | 'success'
2017-11-17 10:35:10 +00:00
export type JobCategory = 'transcoding' | 'activitypub-http'