@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 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, 12 May 2021 19:31:30 GMT
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
 
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "12.20.13",
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": "0bfd0d8c2bb28d5b12b7e3e14b8cdb5ea97fdce0381b1760b5b2a48f625ba5fe",
210
- "typeScriptVersion": "3.5"
210
+ "typesPublisherContentHash": "2e58313cb47fcdf714f6591bdd70e667b4fb6722bad49359b8597fd57a857d35",
211
+ "typeScriptVersion": "3.6"
211
212
  }
@@ -112,7 +112,7 @@ declare module 'perf_hooks' {
112
112
  * @param startMark
113
113
  * @param endMark
114
114
  */
115
- measure(name: string, startMark: string, endMark: string): void;
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>, buffered?: boolean }): void;
185
+ observe(options: { entryTypes: ReadonlyArray<string>; buffered?: boolean }): void;
186
186
  }
187
187
 
188
188
  namespace constants {