@types/node 18.7.20 → 18.7.21

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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/package.json +2 -2
  3. node/test.d.ts +2 -2
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: Sat, 24 Sep 2022 15:03:09 GMT
11
+ * Last updated: Sun, 25 Sep 2022 12:03:05 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": "18.7.20",
3
+ "version": "18.7.21",
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": "901533cbe1711b7da6d3baff2ae89391537719cc7b02f04eedb75093023c817a",
230
+ "typesPublisherContentHash": "72aba42e9ffd928ef1a15d5349c472cf7a0dcf48d2dfaab418d158a394e2c8d1",
231
231
  "typeScriptVersion": "4.1"
232
232
  }
node/test.d.ts CHANGED
@@ -50,7 +50,7 @@ declare module 'node:test' {
50
50
  function test(options?: TestOptions, fn?: TestFn): Promise<void>;
51
51
  function test(fn?: TestFn): Promise<void>;
52
52
 
53
- /*
53
+ /**
54
54
  * @since v18.6.0
55
55
  * @param name The name of the suite, which is displayed when reporting suite results.
56
56
  * Default: The `name` property of fn, or `'<anonymous>'` if `fn` does not have a name.
@@ -62,7 +62,7 @@ declare module 'node:test' {
62
62
  function describe(options?: TestOptions, fn?: SuiteFn): void;
63
63
  function describe(fn?: SuiteFn): void;
64
64
 
65
- /*
65
+ /**
66
66
  * @since v18.6.0
67
67
  * @param name The name of the test, which is displayed when reporting test results.
68
68
  * Default: The `name` property of fn, or `'<anonymous>'` if `fn` does not have a name.