1
0
Fork 0
peertube/shared/models/job.model.ts

13 lines
294 B
TypeScript
Raw Normal View History

2017-06-16 04:36:18 -04:00
export type JobState = 'pending' | 'processing' | 'error' | 'success'
2017-11-17 05:35:10 -05:00
export type JobCategory = 'transcoding' | 'activitypub-http'
2017-11-30 04:51:13 -05:00
export interface Job {
id: number
state: JobState
category: JobCategory
handlerName: string
handlerInputData: any
createdAt: Date
updatedAt: Date
}