@types/node 14.14.10 → 14.14.11

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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/package.json +2 -2
  3. node/tls.d.ts +1 -1
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: Wed, 25 Nov 2020 06:26:11 GMT
11
+ * Last updated: Tue, 08 Dec 2020 16:56:23 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "14.14.10",
3
+ "version": "14.14.11",
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": "62f0f6cb4bd82f8d2c0ab046ed00f0e79c63f5e06cb3225e5749fd2b0bfe94ca",
249
+ "typesPublisherContentHash": "75c844e97b20ed36216377480ad7018e135b943a7e6a16a8a860e1ff0371986e",
250
250
  "typeScriptVersion": "3.3"
251
251
  }
node/tls.d.ts CHANGED
@@ -436,7 +436,7 @@ declare module "tls" {
436
436
 
437
437
  interface PSKCallbackNegotation {
438
438
  psk: DataView | NodeJS.TypedArray;
439
- identitty: string;
439
+ identity: string;
440
440
  }
441
441
 
442
442
  interface ConnectionOptions extends SecureContextOptions, CommonConnectionOptions {