diff options
Diffstat (limited to 'server/models/job-interface.ts')
-rw-r--r-- | server/models/job-interface.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server/models/job-interface.ts b/server/models/job-interface.ts index ad4e2d2b0..ab6678257 100644 --- a/server/models/job-interface.ts +++ b/server/models/job-interface.ts | |||
@@ -1,7 +1,8 @@ | |||
1 | import * as Sequelize from 'sequelize' | 1 | import * as Sequelize from 'sequelize' |
2 | 2 | ||
3 | export namespace JobMethods { | 3 | export namespace JobMethods { |
4 | export type ListWithLimit = (limit, state, callback) => void | 4 | export type ListWithLimitCallback = (err: Error, jobInstances: JobInstance[]) => void |
5 | export type ListWithLimit = (limit: number, state: string, callback: ListWithLimitCallback) => void | ||
5 | } | 6 | } |
6 | 7 | ||
7 | export interface JobClass { | 8 | export interface JobClass { |