@types/node 20.7.0 → 20.7.1
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/README.md +1 -1
- node/package.json +2 -2
- node/test.d.ts +16 -1
node/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 27 Sep 2023 20:35:06 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
|
|
14
14
|
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "20.7.
|
|
3
|
+
"version": "20.7.1",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -227,6 +227,6 @@
|
|
|
227
227
|
},
|
|
228
228
|
"scripts": {},
|
|
229
229
|
"dependencies": {},
|
|
230
|
-
"typesPublisherContentHash": "
|
|
230
|
+
"typesPublisherContentHash": "4619e9f05c4b3ece54c50232ef1f73d47265431ca489080efc47c46a264555da",
|
|
231
231
|
"typeScriptVersion": "4.5"
|
|
232
232
|
}
|
node/test.d.ts
CHANGED
|
@@ -1146,7 +1146,22 @@ declare module "node:test" {
|
|
|
1146
1146
|
*/
|
|
1147
1147
|
[Symbol.dispose](): void;
|
|
1148
1148
|
}
|
|
1149
|
-
export {
|
|
1149
|
+
export {
|
|
1150
|
+
after,
|
|
1151
|
+
afterEach,
|
|
1152
|
+
before,
|
|
1153
|
+
beforeEach,
|
|
1154
|
+
describe,
|
|
1155
|
+
it,
|
|
1156
|
+
Mock,
|
|
1157
|
+
mock,
|
|
1158
|
+
only,
|
|
1159
|
+
run,
|
|
1160
|
+
skip,
|
|
1161
|
+
test,
|
|
1162
|
+
test as default,
|
|
1163
|
+
todo,
|
|
1164
|
+
};
|
|
1150
1165
|
}
|
|
1151
1166
|
|
|
1152
1167
|
interface TestLocationInfo {
|