@types/node 12.7.6 → 12.7.7

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/readline.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: Tue, 24 Sep 2019 16:05:23 GMT
11
+ * Last updated: Tue, 24 Sep 2019 17:18:01 GMT
12
12
  * Dependencies: none
13
13
  * Global values: Buffer, NodeJS, Symbol, __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": "12.7.6",
3
+ "version": "12.7.7",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -216,6 +216,6 @@
216
216
  },
217
217
  "scripts": {},
218
218
  "dependencies": {},
219
- "typesPublisherContentHash": "542cf9eaf87394aa3b806c4581c5551d0bd4d05147b8fb3ffee64a5539ff8dc8",
219
+ "typesPublisherContentHash": "c84a19c4d732b513db6ef2569d29fbb6047ac308b4c918b12af85115ddc3a646",
220
220
  "typeScriptVersion": "2.0"
221
221
  }
node/readline.d.ts CHANGED
@@ -127,7 +127,7 @@ declare module "readline" {
127
127
 
128
128
  function createInterface(input: NodeJS.ReadableStream, output?: NodeJS.WritableStream, completer?: Completer | AsyncCompleter, terminal?: boolean): Interface;
129
129
  function createInterface(options: ReadLineOptions): Interface;
130
- function emitKeypressEvents(stream: NodeJS.ReadableStream, interface?: Interface): void;
130
+ function emitKeypressEvents(stream: NodeJS.ReadableStream, readlineInterface?: Interface): void;
131
131
 
132
132
  type Direction = -1 | 0 | 1;
133
133