@types/node 10.17.13 → 10.17.14

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/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: Thu, 26 Dec 2019 17:07:04 GMT
11
+ * Last updated: Tue, 28 Jan 2020 19:35:13 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `NodeJS`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
node v10/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "10.17.13",
3
+ "version": "10.17.14",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -201,6 +201,6 @@
201
201
  },
202
202
  "scripts": {},
203
203
  "dependencies": {},
204
- "typesPublisherContentHash": "ab366056b7549388af23a01e59a9938550aa9d5546ee808aca44dec4d4d923ea",
204
+ "typesPublisherContentHash": "d59c9075b25cfcd862bb8a1a3910700810fb6d5510e80b601ba1cf407b5779dc",
205
205
  "typeScriptVersion": "2.8"
206
206
  }
node v10/readline.d.ts CHANGED
@@ -129,6 +129,7 @@ declare module "readline" {
129
129
  prompt?: string;
130
130
  crlfDelay?: number;
131
131
  removeHistoryDuplicates?: boolean;
132
+ escapeCodeTimeout?: number;
132
133
  }
133
134
 
134
135
  function createInterface(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean): Interface;