diff --git a/jquery/jquery-tests.ts b/jquery/jquery-tests.ts index 0516fa82c2..c3fc3032f3 100644 --- a/jquery/jquery-tests.ts +++ b/jquery/jquery-tests.ts @@ -448,11 +448,6 @@ function test_toggle() { }); } -function test_easing() { - var result: number = $.easing.linear(3); - var result: number = $.easing.swing(3); -} - function test_append() { $('.inner').append('
Test
'); $('.container').append($('h2')); diff --git a/jquery/jquery.d.ts b/jquery/jquery.d.ts index 33033106e8..0d26a82533 100644 --- a/jquery/jquery.d.ts +++ b/jquery/jquery.d.ts @@ -1062,10 +1062,6 @@ 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; - - easing: JQueryEasing; } /**