Fix overload order for 'jquery-sortable'.

This commit is contained in:
Daniel Rosenwasser
2015-08-06 16:00:11 -07:00
parent fc0f0afd0a
commit 9916c6f043
+1 -3
View File
@@ -91,14 +91,12 @@ declare module JQuerySortable {
}
}
interface JQuery {
sortable(options?: JQuerySortable.Options): JQuery;
sortable(methodName: 'enable'): JQuery;
sortable(methodName: 'disable'): JQuery;
sortable(methodName: 'refresh'): JQuery;
sortable(methodName: 'destroy'): JQuery;
sortable(methodName: 'serialize'): JQuery;
sortable(methodName: string): JQuery;
sortable(options?: JQuerySortable.Options): JQuery;
}