Create jquery.sortElements.d.ts

This commit is contained in:
Tim Bureck
2013-09-18 13:07:31 +02:00
parent 6c7c46480d
commit 0b589a8004

View File

@@ -0,0 +1,10 @@
// Typescript type definitions for jQuery.sortElements by James Padolsey <http://james.padolsey.com/javascript/sorting-elements-with-jquery/>
// Project: http://james.padolsey.com/javascript/sorting-elements-with-jquery/
// Definitions by: Tim Bureck <https://github.com/tbureck>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path='../jquery/jquery.d.ts'/>
interface JQuery {
sortElements(comparator:Function, getSortable?:Function):JQuery;
}