@types/node 8.10.57 → 8.10.61

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.
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) Microsoft Corporation. All rights reserved.
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
node v8.10/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # Installation
2
+ > `npm install --save @types/node`
3
+
4
+ # Summary
5
+ This package contains type definitions for Node.js (http://nodejs.org/).
6
+
7
+ # Details
8
+ Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v8.
9
+
10
+ ### Additional Details
11
+ * Last updated: Tue, 19 May 2020 18:08:58 GMT
12
+ * Dependencies: none
13
+ * Global values: `Buffer`, `NodeJS`, `SlowBuffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
+
15
+ # Credits
16
+ These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Parambir Singh](https://github.com/parambirs), [Wilco Bakker](https://github.com/WilcoBakker), [Nicolas Voigt](https://github.com/octo-sniffle), [Chigozirim C.](https://github.com/smac89), [Flarna](https://github.com/Flarna), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [wwwy3y3](https://github.com/wwwy3y3), [Deividas Bakanas](https://github.com/DeividasBakanas), [Kelvin Jin](https://github.com/kjin), [Alvis HT Tang](https://github.com/alvis), [Sebastian Silbermann](https://github.com/eps1lon), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Alberto Schiabel](https://github.com/jkomyno), [Huw](https://github.com/hoo29), [Nicolas Even](https://github.com/n-e), [Nikita Galkin](https://github.com/galkin), [Bruno Scheufler](https://github.com/brunoscheufler), [Hoàng Văn Khải](https://github.com/KSXGitHub), [Lishude](https://github.com/islishude), [Andrew Makarov](https://github.com/r3nya), [Jordi Oliveras Rovira](https://github.com/j-oliveras), and [Thanik Bhongbhibhat](https://github.com/bhongy).
@@ -2006,6 +2006,7 @@ declare module "child_process" {
2006
2006
  stdin: stream.Writable;
2007
2007
  stdout: stream.Readable;
2008
2008
  stderr: stream.Readable;
2009
+ readonly channel?: stream.Pipe | null;
2009
2010
  stdio: StdioStreams;
2010
2011
  killed: boolean;
2011
2012
  pid: number;
@@ -3473,7 +3474,7 @@ declare module "fs" {
3473
3474
  * @param existingPath A path to a file. If a URL is provided, it must use the `file:` protocol.
3474
3475
  * @param newPath A path to a file. If a URL is provided, it must use the `file:` protocol.
3475
3476
  */
3476
- export function link(existingPath: PathLike, newPath: PathLike): Promise<void>;
3477
+ export function __promisify__(existingPath: PathLike, newPath: PathLike): Promise<void>;
3477
3478
  }
3478
3479
 
3479
3480
  /**
@@ -5614,7 +5615,7 @@ declare module "stream" {
5614
5615
  }
5615
5616
 
5616
5617
  export interface TransformOptions extends DuplexOptions {
5617
- transform?: (chunk: string | Buffer, encoding: string, callback: Function) => any;
5618
+ transform?: (chunk: any, encoding: string, callback: Function) => any;
5618
5619
  flush?: (callback: Function) => any;
5619
5620
  }
5620
5621
 
@@ -5625,6 +5626,13 @@ declare module "stream" {
5625
5626
  }
5626
5627
 
5627
5628
  export class PassThrough extends Transform { }
5629
+
5630
+ interface Pipe {
5631
+ close(): void;
5632
+ hasRef(): boolean;
5633
+ ref(): void;
5634
+ unref(): void;
5635
+ }
5628
5636
  }
5629
5637
 
5630
5638
  export = internal;
@@ -3,7 +3,6 @@
3
3
  // Definitions by: Microsoft TypeScript <https://github.com/Microsoft>
4
4
  // DefinitelyTyped <https://github.com/DefinitelyTyped>
5
5
  // Parambir Singh <https://github.com/parambirs>
6
- // Christian Vaagland Tellnes <https://github.com/tellnes>
7
6
  // Wilco Bakker <https://github.com/WilcoBakker>
8
7
  // Nicolas Voigt <https://github.com/octo-sniffle>
9
8
  // Chigozirim C. <https://github.com/smac89>
File without changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "8.10.57",
3
+ "version": "8.10.61",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -19,11 +19,6 @@
19
19
  "url": "https://github.com/parambirs",
20
20
  "githubUsername": "parambirs"
21
21
  },
22
- {
23
- "name": "Christian Vaagland Tellnes",
24
- "url": "https://github.com/tellnes",
25
- "githubUsername": "tellnes"
26
- },
27
22
  {
28
23
  "name": "Wilco Bakker",
29
24
  "url": "https://github.com/WilcoBakker",
@@ -131,7 +126,7 @@
131
126
  }
132
127
  ],
133
128
  "main": "",
134
- "types": "index",
129
+ "types": "index.d.ts",
135
130
  "typesVersions": {
136
131
  ">=3.2.0-0": {
137
132
  "*": [
@@ -146,6 +141,6 @@
146
141
  },
147
142
  "scripts": {},
148
143
  "dependencies": {},
149
- "typesPublisherContentHash": "813837088e2bc3e6c92e07f1446ce0ce35c681fbda94985f83d43aa935d8e3ce",
150
- "typeScriptVersion": "2.1"
144
+ "typesPublisherContentHash": "01f7372d23d7bdb2ed2c30e6d11c99d517799dbb5bfbb686d6fabbd6ba95701e",
145
+ "typeScriptVersion": "3.0"
151
146
  }
File without changes
node v8/README.md DELETED
@@ -1,16 +0,0 @@
1
- # Installation
2
- > `npm install --save @types/node`
3
-
4
- # Summary
5
- This package contains type definitions for Node.js (http://nodejs.org/).
6
-
7
- # Details
8
- Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v8
9
-
10
- Additional Details
11
- * Last updated: Wed, 30 Oct 2019 15:44:46 GMT
12
- * Dependencies: none
13
- * Global values: Buffer, NodeJS, SlowBuffer, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
14
-
15
- # Credits
16
- These definitions were written by Microsoft TypeScript <https://github.com/Microsoft>, DefinitelyTyped <https://github.com/DefinitelyTyped>, Parambir Singh <https://github.com/parambirs>, Christian Vaagland Tellnes <https://github.com/tellnes>, Wilco Bakker <https://github.com/WilcoBakker>, Nicolas Voigt <https://github.com/octo-sniffle>, Chigozirim C. <https://github.com/smac89>, Flarna <https://github.com/Flarna>, Mariusz Wiktorczyk <https://github.com/mwiktorczyk>, wwwy3y3 <https://github.com/wwwy3y3>, Deividas Bakanas <https://github.com/DeividasBakanas>, Kelvin Jin <https://github.com/kjin>, Alvis HT Tang <https://github.com/alvis>, Sebastian Silbermann <https://github.com/eps1lon>, Hannes Magnusson <https://github.com/Hannes-Magnusson-CK>, Alberto Schiabel <https://github.com/jkomyno>, Huw <https://github.com/hoo29>, Nicolas Even <https://github.com/n-e>, Nikita Galkin <https://github.com/galkin>, Bruno Scheufler <https://github.com/brunoscheufler>, Hoàng Văn Khải <https://github.com/KSXGitHub>, Lishude <https://github.com/islishude>, Andrew Makarov <https://github.com/r3nya>, Jordi Oliveras Rovira <https://github.com/j-oliveras>, and Thanik Bhongbhibhat <https://github.com/bhongy>.