@types/node 7.10.5 → 7.10.9

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 v7/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "7.10.5",
3
+ "version": "7.10.9",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -52,6 +52,13 @@
52
52
  ],
53
53
  "main": "",
54
54
  "types": "index",
55
+ "typesVersions": {
56
+ ">=3.2.0-0": {
57
+ "*": [
58
+ "ts3.2/*"
59
+ ]
60
+ }
61
+ },
55
62
  "repository": {
56
63
  "type": "git",
57
64
  "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
@@ -59,6 +66,6 @@
59
66
  },
60
67
  "scripts": {},
61
68
  "dependencies": {},
62
- "typesPublisherContentHash": "c4eb9b18f8c500e528c455e1005f14568bbbfe4db04c1828b7682d9b69db8ae5",
69
+ "typesPublisherContentHash": "0c534d9103600d73c97ec8a474420c4d9262b941ae93e66c175cb27e62683e84",
63
70
  "typeScriptVersion": "2.0"
64
71
  }
@@ -0,0 +1,15 @@
1
+ // NOTE: These definitions support NodeJS and TypeScript 3.2.
2
+
3
+ // NOTE: TypeScript version-specific augmentations can be found in the following paths:
4
+ // - ~/base.d.ts - Shared definitions common to all TypeScript versions
5
+ // - ~/index.d.ts - Definitions specific to TypeScript 2.1
6
+ // - ~/ts3.2/index.d.ts - Definitions specific to TypeScript 3.2
7
+
8
+ // Reference required types from the default lib:
9
+ /// <reference lib="es2016" />
10
+
11
+ // Base definitions for all NodeJS modules that are not specific to any version of TypeScript:
12
+ // tslint:disable-next-line:no-bad-reference
13
+ /// <reference path="../base.d.ts" />
14
+
15
+ // TypeScript 3.2-specific augmentations: