@types/node 14.17.12 → 14.17.13
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 v14.17/README.md +1 -1
- node v14.17/package.json +2 -2
- node v14.17/tls.d.ts +3 -2
node v14.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/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 31 Aug 2021 17:01:28 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 v14.17/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.17.
|
|
3
|
+
"version": "14.17.13",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -225,6 +225,6 @@
|
|
|
225
225
|
},
|
|
226
226
|
"scripts": {},
|
|
227
227
|
"dependencies": {},
|
|
228
|
-
"typesPublisherContentHash": "
|
|
228
|
+
"typesPublisherContentHash": "4eb37aba3aa3ad2518fc4da4734dc4eaad0b638435917dbd8a9c8d73e7662cb4",
|
|
229
229
|
"typeScriptVersion": "3.7"
|
|
230
230
|
}
|
node v14.17/tls.d.ts
CHANGED
|
@@ -150,9 +150,10 @@ declare module 'tls' {
|
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
152
|
* String containing the selected ALPN protocol.
|
|
153
|
-
*
|
|
153
|
+
* Before a handshake has completed, this value is always null.
|
|
154
|
+
* When a handshake is completed but not ALPN protocol was selected, tlsSocket.alpnProtocol equals false.
|
|
154
155
|
*/
|
|
155
|
-
alpnProtocol
|
|
156
|
+
alpnProtocol: string | false | null;
|
|
156
157
|
|
|
157
158
|
/**
|
|
158
159
|
* Returns an object representing the local certificate. The returned
|