aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/models/job-interface.ts
blob: ab66782571e2c34cdc33467f2a2c1fd4fa79b46a (plain) (tree)
1
2
3
4
5


                                      

                                                                                                     


















                                                                                                 
import * as Sequelize from 'sequelize'

export namespace JobMethods {
  export type ListWithLimitCallback = (err: Error, jobInstances: JobInstance[]) => void
  export type ListWithLimit = (limit: number, state: string, callback: ListWithLimitCallback) => void
}

export interface JobClass {
  listWithLimit: JobMethods.ListWithLimit
}

export interface JobAttributes {
  state: string
  handlerName: string
  handlerInputData: object
}

export interface JobInstance extends JobClass, JobAttributes, Sequelize.Instance<JobAttributes> {
  id: number
  createdAt: Date
  updatedAt: Date
}

export interface JobModel extends JobClass, Sequelize.Model<JobInstance, JobAttributes> {}