Merge pull request #23719 from hisorange/bull-fix

Add missing limit option to bull package.
This commit is contained in:
Daniel Rosenwasser
2018-03-17 18:19:06 -07:00
committed by GitHub

View File

@@ -167,6 +167,11 @@ declare namespace Bull {
* End date when the repeat job should stop repeating
*/
endDate?: Date | string | number;
/**
* Number of times the job should repeat at max.
*/
limit?: number;
}
interface JobOptions {