mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-01 09:00:11 +00:00
* Update JobStatus type to be compatible with all Queue methods The docs for Bull suggest that methods can take `waiting` as a valid JobStatus but this is incorrect. For example [here](https://github.com/OptimalBits/bull/blob/master/lib/queue.js#L995) the `.clean` method will fail when trying to clean the status `waiting`. This should be changed to `wait` but is currently incompatible with the typings here * use `// tslint:disable-next-line` instead of `// tslint:disable`