From 331e1f7b4cf350759c58c99c7ecd3b28c4fc9899 Mon Sep 17 00:00:00 2001 From: YusukeHirao Date: Wed, 14 Aug 2013 19:47:54 +0900 Subject: [PATCH] A function support for 'jQuery.Animation' 'jQuery.Animation' is a function that has been added from version 1.8. --- jquery/jquery.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index d3a4e04ce8..55bb15bed5 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -374,6 +374,9 @@ interface JQueryStatic { * @param keepScripts A Boolean indicating whether to include scripts passed in the HTML string */ parseHTML(data: string, context?: HTMLElement, keepScripts?: boolean): any[]; + + Animation(elem: any, properties: any, options: any): any; + } /*