@types/jquery 3.2.15 → 3.2.16
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/README.md +1 -1
- jquery/index.d.ts +3 -5
- jquery/package.json +2 -2
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://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jquery
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 30 Oct 2017 15:12:36 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: $, JQuery, jQuery
|
|
14
14
|
|
jquery/index.d.ts
CHANGED
|
@@ -235,7 +235,6 @@ interface JQueryStatic<TElement extends Node = HTMLElement> {
|
|
|
235
235
|
*
|
|
236
236
|
* @param element The DOM element to query for the data.
|
|
237
237
|
* @param key Name of the data stored.
|
|
238
|
-
* @param undefined
|
|
239
238
|
* @see {@link https://api.jquery.com/jQuery.data/}
|
|
240
239
|
* @since 1.2.3
|
|
241
240
|
*/
|
|
@@ -728,7 +727,7 @@ interface JQueryStatic<TElement extends Node = HTMLElement> {
|
|
|
728
727
|
* @see {@link https://api.jquery.com/jQuery.parseHTML/}
|
|
729
728
|
* @since 1.8
|
|
730
729
|
*/
|
|
731
|
-
parseHTML(data: string, context_keepScripts?: Document | null |
|
|
730
|
+
parseHTML(data: string, context_keepScripts?: Document | null | boolean): JQuery.Node[];
|
|
732
731
|
/**
|
|
733
732
|
* Takes a well-formed JSON string and returns the resulting JavaScript value.
|
|
734
733
|
*
|
|
@@ -3422,7 +3421,6 @@ interface JQuery<TElement extends Node = HTMLElement> extends Iterable<TElement>
|
|
|
3422
3421
|
* data(name, value) or by an HTML5 data-* attribute.
|
|
3423
3422
|
*
|
|
3424
3423
|
* @param key Name of the data stored.
|
|
3425
|
-
* @param undefined
|
|
3426
3424
|
* @see {@link https://api.jquery.com/data/}
|
|
3427
3425
|
* @since 1.2.3
|
|
3428
3426
|
*/
|
|
@@ -6774,7 +6772,7 @@ declare namespace JQuery {
|
|
|
6774
6772
|
(failFilter?: ((t: TJ, u: UJ, v: VJ, ...s: SJ[]) => PromiseBase<ARF, AJF, ANF,
|
|
6775
6773
|
BRF, BJF, BNF,
|
|
6776
6774
|
CRF, CJF, CNF,
|
|
6777
|
-
RRF, RJF, RNF> | Thenable<ARF> | ARF) |
|
|
6775
|
+
RRF, RJF, RNF> | Thenable<ARF> | ARF) | null): PromiseBase<ARF, AJF, ANF,
|
|
6778
6776
|
BRF, BJF, BNF,
|
|
6779
6777
|
CRF, CJF, CNF,
|
|
6780
6778
|
RRF, RJF, RNF>;
|
|
@@ -7355,7 +7353,7 @@ declare namespace JQuery {
|
|
|
7355
7353
|
(failFilter?: ((...t: TJ[]) => PromiseBase<ARF, AJF, ANF,
|
|
7356
7354
|
BRF, BJF, BNF,
|
|
7357
7355
|
CRF, CJF, CNF,
|
|
7358
|
-
RRF, RJF, RNF> | Thenable<ARF> | ARF) |
|
|
7356
|
+
RRF, RJF, RNF> | Thenable<ARF> | ARF) | null): PromiseBase<ARF, AJF, ANF,
|
|
7359
7357
|
BRF, BJF, BNF,
|
|
7360
7358
|
CRF, CJF, CNF,
|
|
7361
7359
|
RRF, RJF, RNF>;
|
jquery/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/jquery",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.16",
|
|
4
4
|
"description": "TypeScript definitions for jquery",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -117,6 +117,6 @@
|
|
|
117
117
|
},
|
|
118
118
|
"scripts": {},
|
|
119
119
|
"dependencies": {},
|
|
120
|
-
"typesPublisherContentHash": "
|
|
120
|
+
"typesPublisherContentHash": "ff6f77472bcffa3093c1473337147ec26cb82c6730c3950ad6b533fd27087777",
|
|
121
121
|
"typeScriptVersion": "2.3"
|
|
122
122
|
}
|