@types/node 10.17.41 → 10.17.42

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 v10.17/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/v10.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 21 Oct 2020 17:47:50 GMT
11
+ * Last updated: Wed, 21 Oct 2020 21:01:55 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `NodeJS`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "10.17.41",
3
+ "version": "10.17.42",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -196,6 +196,6 @@
196
196
  },
197
197
  "scripts": {},
198
198
  "dependencies": {},
199
- "typesPublisherContentHash": "7b68bb3e56661bc870f28ffe8b83a645140ea127b21991ca0d03b9cccee0d1d8",
199
+ "typesPublisherContentHash": "d8f78b67817e1e8469341e8c26b1885119bf28dbb40e64f77e0730be1087b478",
200
200
  "typeScriptVersion": "3.2"
201
201
  }
node v10.17/tls.d.ts CHANGED
@@ -447,7 +447,7 @@ declare module "tls" {
447
447
  function connect(port: number, host?: string, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket;
448
448
  function connect(port: number, options?: ConnectionOptions, secureConnectListener?: () => void): TLSSocket;
449
449
  function createSecurePair(credentials?: crypto.Credentials, isServer?: boolean, requestCert?: boolean, rejectUnauthorized?: boolean): SecurePair;
450
- function createSecureContext(details: SecureContextOptions): SecureContext;
450
+ function createSecureContext(options?: SecureContextOptions): SecureContext;
451
451
  function getCiphers(): string[];
452
452
 
453
453
  /**