diff --git a/types/bull/index.d.ts b/types/bull/index.d.ts index e689629f04..c07c938630 100644 --- a/types/bull/index.d.ts +++ b/types/bull/index.d.ts @@ -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 {