@types/node 13.7.4 → 13.7.5

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 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: Wed, 19 Feb 2020 19:24:16 GMT
11
+ * Last updated: Tue, 25 Feb 2020 19:08:56 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "13.7.4",
3
+ "version": "13.7.5",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -223,6 +223,11 @@
223
223
  "main": "",
224
224
  "types": "index.d.ts",
225
225
  "typesVersions": {
226
+ ">=3.2.0-0": {
227
+ "*": [
228
+ "ts3.2/*"
229
+ ]
230
+ },
226
231
  ">=3.5.0-0": {
227
232
  "*": [
228
233
  "ts3.5/*"
@@ -236,6 +241,6 @@
236
241
  },
237
242
  "scripts": {},
238
243
  "dependencies": {},
239
- "typesPublisherContentHash": "ee528da3820e2c28a1fc11b1c6d081be644dd673dc70dd967e45423833c607a5",
244
+ "typesPublisherContentHash": "e78e8b87af5fa20557bee38f9a7786e67fa91de7eb1237c859f4c55ec7c427ab",
240
245
  "typeScriptVersion": "2.8"
241
246
  }
File without changes
File without changes
node/ts3.2/index.d.ts ADDED
@@ -0,0 +1,16 @@
1
+ // NOTE: These definitions support NodeJS and TypeScript 3.2.
2
+
3
+ // Reference required types from the default lib:
4
+ /// <reference lib="es2018" />
5
+ /// <reference lib="esnext.asynciterable" />
6
+ /// <reference lib="esnext.intl" />
7
+ /// <reference lib="esnext.bigint" />
8
+
9
+ // Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
10
+ // tslint:disable-next-line:no-bad-reference
11
+ /// <reference path="../base.d.ts" />
12
+
13
+ // TypeScript 3.2-specific augmentations:
14
+ /// <reference path="fs.d.ts" />
15
+ /// <reference path="util.d.ts" />
16
+ /// <reference path="globals.d.ts" />
File without changes
node/ts3.5/index.d.ts CHANGED
@@ -8,10 +8,7 @@
8
8
 
9
9
  // Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
10
10
  // tslint:disable-next-line:no-bad-reference
11
- /// <reference path="../base.d.ts" />
11
+ /// <reference path="../ts3.2/index.d.ts" />
12
12
 
13
13
  // TypeScript 3.5-specific augmentations:
14
- /// <reference path="fs.d.ts" />
15
- /// <reference path="util.d.ts" />
16
- /// <reference path="globals.d.ts" />
17
14
  /// <reference path="wasi.d.ts" />