mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-11 11:50:54 +08:00
Fixed issue when using $.extend to merge defaultOptions and options
This commit is contained in:
Vendored
+2
-2
@@ -324,8 +324,8 @@ interface JQueryStatic {
|
||||
each(collection: JQuery, callback: (indexInArray: number, valueOfElement: HTMLElement) => any): any;
|
||||
each<T>(collection: T[], callback: (indexInArray: number, valueOfElement: T) => any): any;
|
||||
|
||||
extend(target: any, ...objs: any[]): Object;
|
||||
extend(deep: boolean, target: any, ...objs: any[]): Object;
|
||||
extend(target: any, ...objs: any[]): any;
|
||||
extend(deep: boolean, target: any, ...objs: any[]): any;
|
||||
|
||||
globalEval(code: string): any;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user