@types/jquery 3.5.31 → 3.5.32
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 +1 -1
- jquery/README.md +1 -1
- jquery/misc.d.ts +2 -2
- jquery/package.json +3 -2
jquery/JQueryStatic.d.ts
CHANGED
|
@@ -2136,7 +2136,7 @@ jQuery.each( objs, function( i ) {
|
|
|
2136
2136
|
$.isFunction(function() {});
|
|
2137
2137
|
```
|
|
2138
2138
|
*/
|
|
2139
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
2139
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
2140
2140
|
isFunction(obj: any): obj is Function;
|
|
2141
2141
|
/**
|
|
2142
2142
|
* Determines whether its argument represents a JavaScript number.
|
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: Wed,
|
|
11
|
+
* Last updated: Wed, 23 Oct 2024 03:36:41 GMT
|
|
12
12
|
* Dependencies: [@types/sizzle](https://npmjs.com/package/@types/sizzle)
|
|
13
13
|
|
|
14
14
|
# Credits
|
jquery/misc.d.ts
CHANGED
|
@@ -759,12 +759,12 @@ declare namespace JQuery {
|
|
|
759
759
|
* @since 1.7
|
|
760
760
|
*/
|
|
761
761
|
/* eslint-disable @definitelytyped/no-unnecessary-generics */
|
|
762
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
762
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
763
763
|
<T extends Function>(flags?: string): Callbacks<T>;
|
|
764
764
|
/* eslint-enable @definitelytyped/no-unnecessary-generics */
|
|
765
765
|
}
|
|
766
766
|
|
|
767
|
-
// eslint-disable-next-line @typescript-eslint/
|
|
767
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
768
768
|
interface Callbacks<T extends Function = Function> {
|
|
769
769
|
/**
|
|
770
770
|
* Add a callback or a collection of callbacks to a callback list.
|
jquery/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/jquery",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.32",
|
|
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,7 @@
|
|
|
127
127
|
"dependencies": {
|
|
128
128
|
"@types/sizzle": "*"
|
|
129
129
|
},
|
|
130
|
-
"
|
|
130
|
+
"peerDependencies": {},
|
|
131
|
+
"typesPublisherContentHash": "6be8791febca4b139d557a33a9f61b3ae57b9fc52f3a4c4aba963f773e3f7766",
|
|
131
132
|
"typeScriptVersion": "4.8"
|
|
132
133
|
}
|