@types/node 10.17.12 → 10.17.13

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: Mon, 23 Dec 2019 16:50:59 GMT
11
+ * Last updated: Thu, 26 Dec 2019 17:07:04 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.12",
3
+ "version": "10.17.13",
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": "c2c0e846df4c988def025d72d25e58af1cffcf486e67f03ef8fa546ff36f30f9",
204
+ "typesPublisherContentHash": "ab366056b7549388af23a01e59a9938550aa9d5546ee808aca44dec4d4d923ea",
205
205
  "typeScriptVersion": "2.8"
206
206
  }
node v10/url.d.ts CHANGED
@@ -7,7 +7,6 @@ declare module "url" {
7
7
  host?: string;
8
8
  hostname?: string;
9
9
  href?: string;
10
- path?: string;
11
10
  pathname?: string;
12
11
  protocol?: string;
13
12
  search?: string;
@@ -24,6 +23,7 @@ declare module "url" {
24
23
  interface Url extends UrlObjectCommon {
25
24
  port?: string;
26
25
  query?: string | null | ParsedUrlQuery;
26
+ path?: string;
27
27
  }
28
28
 
29
29
  interface UrlWithParsedQuery extends Url {