From fe3e8016d42f86fff607a7cd424ec3cabeea4b45 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com> Date: Fri, 25 Sep 2020 12:12:56 -0700 Subject: [PATCH] fix redundant jsdoc in bull/v2 (#48189) --- types/bull/v2/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/bull/v2/index.d.ts b/types/bull/v2/index.d.ts index 4ea3f82df7..4e71583e40 100644 --- a/types/bull/v2/index.d.ts +++ b/types/bull/v2/index.d.ts @@ -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; /** * 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;