@types/node 12.20.51 → 12.20.52

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 (https://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: Tue, 10 May 2022 21:31:43 GMT
11
+ * Last updated: Thu, 12 May 2022 21:31:47 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/net.d.ts CHANGED
@@ -96,6 +96,11 @@ declare module 'net' {
96
96
  readonly remoteAddress?: string | undefined;
97
97
  readonly remoteFamily?: string | undefined;
98
98
  readonly remotePort?: number | undefined;
99
+ /**
100
+ * The socket timeout in milliseconds as set by socket.setTimeout(). It is undefined if a timeout has not been set.
101
+ * @since v10.7.0
102
+ */
103
+ readonly timeout?: number | undefined;
99
104
 
100
105
  // Extended base methods
101
106
  end(cb?: () => void): this;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "12.20.51",
3
+ "version": "12.20.52",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -190,6 +190,6 @@
190
190
  },
191
191
  "scripts": {},
192
192
  "dependencies": {},
193
- "typesPublisherContentHash": "af09730afd3f1c1c28403f4ef9f3443c03b722f4973ff70e7dd0b0583ab97236",
193
+ "typesPublisherContentHash": "ff0fbd6a0d46cf1013682f942090aff6f92f09499ceb8e02c618e8def1f4a1af",
194
194
  "typeScriptVersion": "3.9"
195
195
  }