fix redundant jsdoc in bull/v2 (#48189)

This commit is contained in:
Nathan Shively-Sanders 2020-09-25 12:12:56 -07:00 committed by GitHub
parent a743c973b3
commit fe3e8016d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,13 +38,13 @@ declare module "bull" {
/**
* Removes a Job from the queue from all the lists where it may be included.
* @returns {Promise} A promise that resolves when the job is removed.
* @returns A promise that resolves when the job is removed.
*/
remove(): Promise<void>;
/**
* Rerun a Job that has failed.
* @returns {Promise} A promise that resolves when the job is scheduled for retry.
* @returns A promise that resolves when the job is scheduled for retry.
*/
retry(): Promise<void>;