]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/models/job/job-interface.ts
Add follow tests
[github/Chocobozzz/PeerTube.git] / server / models / job / job-interface.ts
index 163930a4f93335f7b006470cdbf33adf84c2b8ce..411a05029e56fa2fe7e95da66f362177180a7594 100644 (file)
@@ -14,7 +14,7 @@ export interface JobClass {
 export interface JobAttributes {
   state: JobState
   handlerName: string
-  handlerInputData: object
+  handlerInputData: any
 }
 
 export interface JobInstance extends JobClass, JobAttributes, Sequelize.Instance<JobAttributes> {