@types/node 12.20.13 → 12.20.14
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 v12.20/README.md +1 -1
- node v12.20/package.json +4 -3
- node v12.20/perf_hooks.d.ts +2 -2
node v12.20/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v12.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Wed,
|
|
11
|
+
* Last updated: Wed, 02 Jun 2021 07:31:37 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `NodeJS`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v12.20/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "12.20.
|
|
3
|
+
"version": "12.20.14",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
|
+
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"contributors": [
|
|
7
8
|
{
|
|
@@ -206,6 +207,6 @@
|
|
|
206
207
|
},
|
|
207
208
|
"scripts": {},
|
|
208
209
|
"dependencies": {},
|
|
209
|
-
"typesPublisherContentHash": "
|
|
210
|
-
"typeScriptVersion": "3.
|
|
210
|
+
"typesPublisherContentHash": "2e58313cb47fcdf714f6591bdd70e667b4fb6722bad49359b8597fd57a857d35",
|
|
211
|
+
"typeScriptVersion": "3.6"
|
|
211
212
|
}
|
node v12.20/perf_hooks.d.ts
CHANGED
|
@@ -112,7 +112,7 @@ declare module 'perf_hooks' {
|
|
|
112
112
|
* @param startMark
|
|
113
113
|
* @param endMark
|
|
114
114
|
*/
|
|
115
|
-
measure(name: string, startMark
|
|
115
|
+
measure(name: string, startMark?: string, endMark?: string): void;
|
|
116
116
|
|
|
117
117
|
/**
|
|
118
118
|
* An instance of the PerformanceNodeTiming class that provides performance metrics for specific Node.js operational milestones.
|
|
@@ -182,7 +182,7 @@ declare module 'perf_hooks' {
|
|
|
182
182
|
* Property buffered defaults to false.
|
|
183
183
|
* @param options
|
|
184
184
|
*/
|
|
185
|
-
observe(options: { entryTypes: ReadonlyArray<string
|
|
185
|
+
observe(options: { entryTypes: ReadonlyArray<string>; buffered?: boolean }): void;
|
|
186
186
|
}
|
|
187
187
|
|
|
188
188
|
namespace constants {
|