bull: Remove duplicate getWaiting definition (#23715)

This commit is contained in:
Andy
2018-02-20 08:34:40 -08:00
committed by GitHub
parent 070eb128b8
commit 38a16c7ac7

View File

@@ -456,11 +456,6 @@ declare namespace Bull {
*/
getFailed(start?: number, end?: number): Promise<Job[]>;
/**
* Returns a promise that will return an array with the waiting jobs between start and end.
*/
getWaiting(start?: number, end?: number): Promise<Job[]>;
/**
* Returns JobInformation of repeatable jobs (ordered descending). Provide a start and/or an end
* index to limit the number of results. Start defaults to 0, end to -1 and asc to false.