@types/node 18.0.2 → 18.0.3
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/perf_hooks.d.ts +6 -0
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, 06 Jul 2022 04:02:23 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.0.
|
|
3
|
+
"version": "18.0.3",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
},
|
|
221
221
|
"scripts": {},
|
|
222
222
|
"dependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "f88edb516946d349187ba7de857caf040f59be37853483f48af1af856105ff55",
|
|
224
224
|
"typeScriptVersion": "4.0"
|
|
225
225
|
}
|
node/perf_hooks.d.ts
CHANGED
|
@@ -507,6 +507,12 @@ declare module 'perf_hooks' {
|
|
|
507
507
|
* @since v15.9.0, v14.18.0
|
|
508
508
|
*/
|
|
509
509
|
recordDelta(): void;
|
|
510
|
+
/**
|
|
511
|
+
* Adds the values from other to this histogram.
|
|
512
|
+
* @since v17.4.0, v16.14.0
|
|
513
|
+
* @param other Recordable Histogram to combine with
|
|
514
|
+
*/
|
|
515
|
+
add(other: RecordableHistogram): void;
|
|
510
516
|
}
|
|
511
517
|
/**
|
|
512
518
|
* _This property is an extension by Node.js. It is not available in Web browsers._
|