@types/node 14.0.27 → 14.6.0

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 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.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Tue, 28 Jul 2020 21:57:26 GMT
11
+ * Last updated: Mon, 17 Aug 2020 14:33:28 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
node/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- // Type definitions for non-npm package Node.js 14.0
1
+ // Type definitions for non-npm package Node.js 14.6
2
2
  // Project: http://nodejs.org/
3
3
  // Definitions by: Microsoft TypeScript <https://github.com/Microsoft>
4
4
  // DefinitelyTyped <https://github.com/DefinitelyTyped>
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "14.0.27",
3
+ "version": "14.6.0",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -246,6 +246,6 @@
246
246
  },
247
247
  "scripts": {},
248
248
  "dependencies": {},
249
- "typesPublisherContentHash": "35ae99a50b9236126d2beef33b7132686ee6d4e06f2c092e9417d5ceb2e48181",
249
+ "typesPublisherContentHash": "9d0f004e6461e52f8fa5badd6efa10f2dc7d2156363fcb7ca879e15a611c96f0",
250
250
  "typeScriptVersion": "3.0"
251
251
  }
node/tls.d.ts CHANGED
@@ -706,6 +706,15 @@ declare module "tls" {
706
706
  * shared between applications. Unused by clients.
707
707
  */
708
708
  sessionIdContext?: string;
709
+ /**
710
+ * 48 bytes of cryptographically strong pseudo-random data.
711
+ */
712
+ ticketKeys?: Buffer;
713
+ /**
714
+ * The number of seconds after which a TLS session created by the server
715
+ * will no longer be resumable.
716
+ */
717
+ sessionTimeout?: number;
709
718
  }
710
719
 
711
720
  interface SecureContext {
node/vm.d.ts CHANGED
@@ -41,6 +41,10 @@ declare module "vm" {
41
41
  * Default: `false`.
42
42
  */
43
43
  breakOnSigint?: boolean;
44
+ /**
45
+ * If set to `afterEvaluate`, microtasks will be run immediately after the script has run.
46
+ */
47
+ microtaskMode?: 'afterEvaluate';
44
48
  }
45
49
  interface CompileFunctionOptions extends BaseOptions {
46
50
  /**
node/worker_threads.d.ts CHANGED
@@ -75,6 +75,7 @@ declare module "worker_threads" {
75
75
  * Additional data to send in the first worker message.
76
76
  */
77
77
  transferList?: Array<ArrayBuffer | MessagePort>;
78
+ trackUnmanagedFds?: boolean;
78
79
  }
79
80
 
80
81
  interface ResourceLimits {