@types/jquery 2.0.53 → 2.0.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
jquery v2/README.md CHANGED
@@ -8,9 +8,9 @@ This package contains type definitions for jQuery (http://jquery.com/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery/v2
9
9
 
10
10
  Additional Details
11
- * Last updated: Tue, 15 Jan 2019 23:23:07 GMT
11
+ * Last updated: Thu, 15 Aug 2019 00:48:32 GMT
12
12
  * Dependencies: none
13
13
  * Global values: $, jQuery
14
14
 
15
15
  # Credits
16
- These definitions were written by Boris Yankov <https://github.com/borisyankov/>, Christian Hoffmeister <https://github.com/choffmeister>, Steve Fenton <https://github.com/Steve-Fenton>, Diullei Gomes <https://github.com/Diullei>, Tass Iliopoulos <https://github.com/tasoili>, Jason Swearingen <https://github.com/jasons-novaleaf>, Sean Hill <https://github.com/seanski>, Guus Goossens <https://github.com/Guuz>, Kelly Summerlin <https://github.com/ksummerlin>, Basarat Ali Syed <https://github.com/basarat>, Nicholas Wolverson <https://github.com/nwolverson>, Derek Cicerone <https://github.com/derekcicerone>, Andrew Gaspar <https://github.com/AndrewGaspar>, Seikichi Kondo <https://github.com/seikichi>, Benjamin Jackman <https://github.com/benjaminjackman>, Poul Sorensen <https://github.com/s093294>, Josh Strobl <https://github.com/JoshStrobl>, John Reilly <https://github.com/johnnyreilly/>, Dick van den Brink <https://github.com/DickvdBrink>, Thomas Schulz <https://github.com/King2500>, Leonard Thieu <https://github.com/leonard-thieu>.
16
+ These definitions were written by Boris Yankov <https://github.com/borisyankov/>, Christian Hoffmeister <https://github.com/choffmeister>, Steve Fenton <https://github.com/Steve-Fenton>, Diullei Gomes <https://github.com/Diullei>, Tass Iliopoulos <https://github.com/tasoili>, Jason Swearingen <https://github.com/jasons-novaleaf>, Sean Hill <https://github.com/seanski>, Guus Goossens <https://github.com/Guuz>, Kelly Summerlin <https://github.com/ksummerlin>, Basarat Ali Syed <https://github.com/basarat>, Nicholas Wolverson <https://github.com/nwolverson>, Derek Cicerone <https://github.com/derekcicerone>, Andrew Gaspar <https://github.com/AndrewGaspar>, Seikichi Kondo <https://github.com/seikichi>, Benjamin Jackman <https://github.com/benjaminjackman>, Poul Sorensen <https://github.com/s093294>, Josh Strobl <https://github.com/JoshStrobl>, John Reilly <https://github.com/johnnyreilly/>, Dick van den Brink <https://github.com/DickvdBrink>, Thomas Schulz <https://github.com/King2500>, and Leonard Thieu <https://github.com/leonard-thieu>.
jquery v2/index.d.ts CHANGED
@@ -3518,24 +3518,11 @@ interface JQuery {
3518
3518
  /**
3519
3519
  * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
3520
3520
  *
3521
- * @param selector A string containing a selector expression to match elements against.
3521
+ * @param selector_element A string containing a selector expression, an element or a jQuery object to match elements against.
3522
3522
  * @see {@link https://api.jquery.com/find/#find-selector}
3523
- */
3524
- find(selector: string): JQuery;
3525
- /**
3526
- * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
3527
- *
3528
- * @param element An element to match elements against.
3529
- * @see {@link https://api.jquery.com/find/#find-element}
3530
- */
3531
- find(element: Element): JQuery;
3532
- /**
3533
- * Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
3534
- *
3535
- * @param obj A jQuery object to match elements against.
3536
3523
  * @see {@link https://api.jquery.com/find/#find-element}
3537
3524
  */
3538
- find(obj: JQuery): JQuery;
3525
+ find(selector_element: string | Element | JQuery): JQuery;
3539
3526
 
3540
3527
  /**
3541
3528
  * Reduce the set of matched elements to the first in the set.
jquery v2/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/jquery",
3
- "version": "2.0.53",
3
+ "version": "2.0.54",
4
4
  "description": "TypeScript definitions for jQuery",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -112,10 +112,11 @@
112
112
  "types": "index",
113
113
  "repository": {
114
114
  "type": "git",
115
- "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
115
+ "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
116
+ "directory": "types/jquery"
116
117
  },
117
118
  "scripts": {},
118
119
  "dependencies": {},
119
- "typesPublisherContentHash": "8abbbe0f258c18de4706bf19090ab46f24c58936f52e370ea97b15ad5e8cf733",
120
+ "typesPublisherContentHash": "af239deef94122e8bd91969ae7edc23b741f93b22ed059898dcfbc423c85ee20",
120
121
  "typeScriptVersion": "2.0"
121
122
  }