From e6fa0b8211cbec40a35e2b18bf001b04fb8c2fcf Mon Sep 17 00:00:00 2001 From: Simon Schick Date: Thu, 11 May 2017 17:11:34 +0200 Subject: [PATCH] Correct return type for no parameters in return method in bluebird --- types/bluebird/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/bluebird/index.d.ts b/types/bluebird/index.d.ts index cceb0ebc54..49cd47d7bd 100644 --- a/types/bluebird/index.d.ts +++ b/types/bluebird/index.d.ts @@ -228,8 +228,8 @@ declare class Bluebird implements Bluebird.Thenable, Bluebird.Inspection; - thenReturn(): Bluebird; + return(): Bluebird; + thenReturn(): Bluebird; return(value: U): Bluebird; thenReturn(value: U): Bluebird;