@types/node 18.19.111 → 18.19.112
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.
- node v18.19/README.md +1 -1
- node v18.19/assert.d.ts +3 -1
- node v18.19/package.json +2 -2
node v18.19/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v18.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 16 Jun 2025 11:02:21 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v18.19/assert.d.ts
CHANGED
|
@@ -64,7 +64,9 @@ declare module "assert" {
|
|
|
64
64
|
* @return that wraps `fn`.
|
|
65
65
|
*/
|
|
66
66
|
calls(exact?: number): () => void;
|
|
67
|
-
calls
|
|
67
|
+
calls(fn: undefined, exact?: number): () => void;
|
|
68
|
+
calls<Func extends (...args: any[]) => any>(fn: Func, exact?: number): Func;
|
|
69
|
+
calls<Func extends (...args: any[]) => any>(fn?: Func, exact?: number): Func | (() => void);
|
|
68
70
|
/**
|
|
69
71
|
* Example:
|
|
70
72
|
*
|
node v18.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.19.
|
|
3
|
+
"version": "18.19.112",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
"undici-types": "~5.26.4"
|
|
221
221
|
},
|
|
222
222
|
"peerDependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "3b0022e6fd68674bfe09bfec92263763b1fba74ce671da541765e24b2af05d76",
|
|
224
224
|
"typeScriptVersion": "5.1"
|
|
225
225
|
}
|