From f7819b3f77e68cb240801d39b7a340eb6477b07b Mon Sep 17 00:00:00 2001 From: John Reilly Date: Tue, 21 Jan 2014 14:36:28 +0000 Subject: [PATCH] jQuery: cater for jQuery.clientSideLogging I haven't looked in detail at this but it looks that jQuery.clientSideLogging is ill-advisedly clobbering ```$.error```. This should probable be addressed at some point. --- 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 6a670863a..6be2c08e2 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -853,7 +853,7 @@ interface JQueryStatic { * * @param message The message to send out. */ - error(message: string): JQuery; + error(message: any): JQuery; expr: any; fn: any; //TODO: Decide how we want to type this