From 4f3550010afe786b638ae63d433ddfa9528c955b Mon Sep 17 00:00:00 2001 From: Michal Miszczyszyn Date: Tue, 17 Nov 2015 20:06:22 +0100 Subject: [PATCH] jquery: Fix noConflict return type. Fix #5840 --- 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 29b7697b2..9f75f9a9d 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -795,7 +795,7 @@ interface JQueryStatic { * * @param removeAll A Boolean indicating whether to remove all jQuery variables from the global scope (including jQuery itself). */ - noConflict(removeAll?: boolean): Object; + noConflict(removeAll?: boolean): JQueryStatic; /** * Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events.