@types/jquery 3.3.32 → 3.3.33
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 +2 -2
- jquery/misc.d.ts +10 -0
- jquery/package.json +2 -2
jquery/README.md
CHANGED
|
@@ -8,9 +8,9 @@ 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:
|
|
11
|
+
* Last updated: Sun, 23 Feb 2020 09:23:45 GMT
|
|
12
12
|
* Dependencies: [@types/sizzle](https://npmjs.com/package/@types/sizzle)
|
|
13
13
|
* Global values: `$`, `Symbol`, `jQuery`
|
|
14
14
|
|
|
15
15
|
# Credits
|
|
16
|
-
These definitions were written by Leonard Thieu
|
|
16
|
+
These definitions were written by [Leonard Thieu](https://github.com/leonard-thieu), [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 [Terry Mun](https://github.com/terrymun).
|
jquery/misc.d.ts
CHANGED
|
@@ -141,6 +141,16 @@ declare namespace JQuery {
|
|
|
141
141
|
* multiple, space-separated values: As of jQuery 1.5, jQuery can convert a dataType from what it received in the Content-Type header to what you require. For example, if you want a text response to be treated as XML, use "text xml" for the dataType. You can also make a JSONP request, have it received as text, and interpreted by jQuery as XML: "jsonp text xml". Similarly, a shorthand string such as "jsonp xml" will first attempt to convert from jsonp to xml, and, failing that, convert from jsonp to text, and then from text to xml.
|
|
142
142
|
*/
|
|
143
143
|
dataType?: 'xml' | 'html' | 'script' | 'json' | 'jsonp' | 'text' | string;
|
|
144
|
+
/**
|
|
145
|
+
* The MIME type of content that is used to submit the form to the server. Possible values are:
|
|
146
|
+
*
|
|
147
|
+
* "application/x-www-form-urlencoded": The initial default type.
|
|
148
|
+
*
|
|
149
|
+
* "multipart/form-data": The type that allows file <input> element(s) to upload file data.
|
|
150
|
+
*
|
|
151
|
+
* "text/plain": A type introduced in HTML5.
|
|
152
|
+
*/
|
|
153
|
+
enctype?: 'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain';
|
|
144
154
|
/**
|
|
145
155
|
* A function to be called if the request fails. The function receives three arguments: The jqXHR (in jQuery 1.4.x, XMLHttpRequest) object, a string describing the type of error that occurred and an optional exception object, if one occurred. Possible values for the second argument (besides null) are "timeout", "error", "abort", and "parsererror". When an HTTP error occurs, errorThrown receives the textual portion of the HTTP status, such as "Not Found" or "Internal Server Error." As of jQuery 1.5, the error setting can accept an array of functions. Each function will be called in turn. Note: This handler is not called for cross-domain script and cross-domain JSONP requests. This is an Ajax Event.
|
|
146
156
|
*/
|
jquery/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/jquery",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.33",
|
|
4
4
|
"description": "TypeScript definitions for jquery",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -126,6 +126,6 @@
|
|
|
126
126
|
"dependencies": {
|
|
127
127
|
"@types/sizzle": "*"
|
|
128
128
|
},
|
|
129
|
-
"typesPublisherContentHash": "
|
|
129
|
+
"typesPublisherContentHash": "bd65395892a0c24b0a14e5429f80405a7907bf04253211eb64dd3493d0b242db",
|
|
130
130
|
"typeScriptVersion": "2.8"
|
|
131
131
|
}
|