@types/node 8.10.48 → 8.10.52
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 v8/README.md +3 -3
- node v8/base.d.ts +3 -1
- node v8/inspector.d.ts +2 -2
- node v8/package.json +2 -2
node v8/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
> `npm install --save @types/node`
|
|
3
3
|
|
|
4
4
|
# Summary
|
|
5
|
-
This package contains type definitions for Node.js (
|
|
5
|
+
This package contains type definitions for Node.js (http://nodejs.org/).
|
|
6
6
|
|
|
7
7
|
# Details
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v8
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 20 Aug 2019 18:16:33 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, SlowBuffer, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
|
15
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>, 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>, Thanik Bhongbhibhat <https://github.com/bhongy>.
|
|
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>, 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>.
|
node v8/base.d.ts
CHANGED
|
@@ -492,7 +492,7 @@ declare namespace NodeJS {
|
|
|
492
492
|
type ExitListener = (code: number) => void;
|
|
493
493
|
type RejectionHandledListener = (promise: Promise<any>) => void;
|
|
494
494
|
type UncaughtExceptionListener = (error: Error) => void;
|
|
495
|
-
type UnhandledRejectionListener = (reason:
|
|
495
|
+
type UnhandledRejectionListener = (reason: {} | null | undefined, promise: Promise<any>) => void;
|
|
496
496
|
type WarningListener = (warning: Error) => void;
|
|
497
497
|
type MessageListener = (message: any, sendHandle: any) => void;
|
|
498
498
|
type SignalsListener = () => void;
|
|
@@ -2146,6 +2146,7 @@ declare module "child_process" {
|
|
|
2146
2146
|
gid?: number;
|
|
2147
2147
|
windowsHide?: boolean;
|
|
2148
2148
|
windowsVerbatimArguments?: boolean;
|
|
2149
|
+
shell?: boolean | string;
|
|
2149
2150
|
}
|
|
2150
2151
|
export interface ExecFileOptionsWithStringEncoding extends ExecFileOptions {
|
|
2151
2152
|
encoding: BufferEncoding;
|
|
@@ -4606,6 +4607,7 @@ declare module "fs" {
|
|
|
4606
4607
|
mode?: number;
|
|
4607
4608
|
autoClose?: boolean;
|
|
4608
4609
|
start?: number;
|
|
4610
|
+
highWaterMark?: number;
|
|
4609
4611
|
}): WriteStream;
|
|
4610
4612
|
|
|
4611
4613
|
/**
|
node v8/inspector.d.ts
CHANGED
|
@@ -2506,7 +2506,7 @@ declare module "inspector" {
|
|
|
2506
2506
|
export function close(): void;
|
|
2507
2507
|
|
|
2508
2508
|
/**
|
|
2509
|
-
* Return the URL of the active inspector, or undefined if there is none.
|
|
2509
|
+
* Return the URL of the active inspector, or `undefined` if there is none.
|
|
2510
2510
|
*/
|
|
2511
|
-
export function url(): string;
|
|
2511
|
+
export function url(): string | undefined;
|
|
2512
2512
|
}
|
node v8/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.52",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -141,6 +141,6 @@
|
|
|
141
141
|
},
|
|
142
142
|
"scripts": {},
|
|
143
143
|
"dependencies": {},
|
|
144
|
-
"typesPublisherContentHash": "
|
|
144
|
+
"typesPublisherContentHash": "d2a82bcd0f2d148ed3936b04f3df3c4091f1eb53cd2805cb5b7f5c98c13d2504",
|
|
145
145
|
"typeScriptVersion": "2.1"
|
|
146
146
|
}
|