@types/jquery 3.5.25 → 3.5.26

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/JQueryStatic.d.ts CHANGED
@@ -96,10 +96,10 @@ $( "<div/>", {
96
96
  .appendTo( "body" );
97
97
  ```
98
98
  */
99
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
99
100
  <TElement extends HTMLElement = HTMLElement>(
100
101
  html: JQuery.htmlString,
101
102
  ownerDocument_attributes?: Document | JQuery.PlainObject,
102
- // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
103
103
  ): JQuery<TElement>;
104
104
  /**
105
105
  * Accepts a string containing a CSS selector which is then used to match a set of elements.
@@ -138,10 +138,10 @@ $( "div", xml.responseXML );
138
138
  ```
139
139
 
140
140
  */
141
+ // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
141
142
  <TElement extends Element = HTMLElement>(
142
143
  selector: JQuery.Selector,
143
144
  context?: Element | Document | JQuery | JQuery.Selector,
144
- // eslint-disable-next-line @definitelytyped/no-unnecessary-generics
145
145
  ): JQuery<TElement>;
146
146
  /**
147
147
  * Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
jquery/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for jquery (https://jquery.com).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Mon, 23 Oct 2023 17:15:17 GMT
11
+ * Last updated: Mon, 06 Nov 2023 19:41:13 GMT
12
12
  * Dependencies: [@types/sizzle](https://npmjs.com/package/@types/sizzle)
13
13
 
14
14
  # Credits
jquery/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/jquery",
3
- "version": "3.5.25",
3
+ "version": "3.5.26",
4
4
  "description": "TypeScript definitions for jquery",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery",
6
6
  "license": "MIT",
@@ -127,6 +127,6 @@
127
127
  "dependencies": {
128
128
  "@types/sizzle": "*"
129
129
  },
130
- "typesPublisherContentHash": "710a587047c56af195d6572d4f3eeebc3eede8b1565d7efa5fcdac91663241f4",
130
+ "typesPublisherContentHash": "88557c95f6a1612913b78347534d44703a762aa28e3b66d543e20f44886e9759",
131
131
  "typeScriptVersion": "4.5"
132
132
  }