From efb0ee0e4f38e7b45c370a57ef0dc6ab71274918 Mon Sep 17 00:00:00 2001 From: Wim Looman Date: Thu, 4 Dec 2014 08:42:11 +1300 Subject: [PATCH] Change Boolean to boolean --- when/when.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/when/when.d.ts b/when/when.d.ts index ca2400fc5..60d569a17 100644 --- a/when/when.d.ts +++ b/when/when.d.ts @@ -61,8 +61,8 @@ declare module When { catch(exceptionType: any, onRejected?: (reason: any) => Promise): Promise; catch(exceptionType: any, onRejected?: (reason: any) => U): Promise; - catch(filter: (reason: any) => Boolean, onRejected?: (reason: any) => Promise): Promise; - catch(filter: (reason: any) => Boolean, onRejected?: (reason: any) => U): Promise; + catch(filter: (reason: any) => boolean, onRejected?: (reason: any) => Promise): Promise; + catch(filter: (reason: any) => boolean, onRejected?: (reason: any) => U): Promise; catch(onRejected?: (reason: any) => Promise): Promise; catch(onRejected?: (reason: any) => U): Promise;