From 9320265200aa949a2baf071d3c65ee5ed1b0420f Mon Sep 17 00:00:00 2001 From: jbblanchet Date: Mon, 24 Nov 2014 18:42:52 -0500 Subject: [PATCH] Remove jQuery reference --- q/Q.d.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/q/Q.d.ts b/q/Q.d.ts index 8dbf93450..3afd90406 100644 --- a/q/Q.d.ts +++ b/q/Q.d.ts @@ -3,18 +3,11 @@ // Definitions by: Barrie Nemetchek , Andrew Gaspar , John Reilly // Definitions: https://github.com/borisyankov/DefinitelyTyped -/// - /** * If value is a Q promise, returns the promise. * If value is a promise from another library it is coerced into a Q promise (where possible). */ declare function Q(promise: Q.IPromise): Q.Promise; -/** - * If value is a Q promise, returns the promise. - * If value is a promise from another library it is coerced into a Q promise (where possible). - */ -declare function Q(promise: JQueryPromise): Q.Promise; /** * If value is not a promise, returns a promise that is fulfilled with value. */