diff --git a/types/bull/index.d.ts b/types/bull/index.d.ts index e4aa2ba809..68caef4126 100644 --- a/types/bull/index.d.ts +++ b/types/bull/index.d.ts @@ -425,6 +425,11 @@ declare namespace Bull { */ getJob(jobId: JobId): Promise; + /** + * Returns a promise that will return an array with the waiting jobs between start and end. + */ + getWaiting(start?: number, end?: number): Promise; + /** * Returns a promise that will return an array with the active jobs between start and end. */