Skip to content

Commit 6ea1138

Browse files
committed
jqueryui - optional options for serialize method
sortable serialize method supports an optional "options" parameter (defaults to {}).
1 parent bda9391 commit 6ea1138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jqueryui/jqueryui.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1704,7 +1704,7 @@ interface JQuery {
17041704
sortable(methodName: string): JQuery;
17051705
sortable(options: JQueryUI.SortableOptions): JQuery;
17061706
sortable(optionLiteral: string, optionName: string): any;
1707-
sortable(methodName: 'serialize', options: { key?: string; attribute?: string; expression?: RegExp }): string;
1707+
sortable(methodName: 'serialize', options?: { key?: string; attribute?: string; expression?: RegExp }): string;
17081708
sortable(optionLiteral: string, options: JQueryUI.SortableOptions): any;
17091709
sortable(optionLiteral: string, optionName: string, optionValue: any): JQuery;
17101710

0 commit comments

Comments
 (0)