From cd8356008b4b160b093440dbbd417d19b9d76808 Mon Sep 17 00:00:00 2001 From: Junle Li Date: Mon, 16 Jun 2014 01:42:56 +0800 Subject: [PATCH] Fix a asterisk bug. --- jquery/jquery.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index 213d500b2..b026c0e5d 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -172,7 +172,7 @@ interface JQueryXHR extends XMLHttpRequest, JQueryPromise { * Incorporates the functionality of the .done() and .fail() methods, allowing (as of jQuery 1.8) the underlying Promise to be manipulated. Refer to deferred.then() for implementation details. */ then(doneCallback: (data: any, textStatus: string, jqXHR: JQueryXHR) => void, failCallback: (jqXHR: JQueryXHR, textStatus: string, errorThrown: any) => void): JQueryPromise; - /* + /** * Property containing the parsed response if the response Content-Type is json */ responseJSON?: any;