@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 +1 -1
- node/index.d.ts +1 -1
- node/package.json +2 -2
- node/tls.d.ts +9 -0
- node/vm.d.ts +4 -0
- node/worker_threads.d.ts +1 -0
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:
|
|
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
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.0
|
|
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": "
|
|
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
|
/**
|