@types/node 10.17.27 → 10.17.28
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.17/README.md +2 -2
- node v10.17/child_process.d.ts +3 -0
- node v10.17/index.d.ts +0 -1
- node v10.17/package.json +2 -7
node v10.17/README.md
CHANGED
|
@@ -8,9 +8,9 @@ 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:
|
|
11
|
+
* Last updated: Thu, 23 Jul 2020 23:06:49 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
|
|
|
15
15
|
# Credits
|
|
16
|
-
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Alberto Schiabel](https://github.com/jkomyno), [Alexander T.](https://github.com/a-tarasyuk), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Bruno Scheufler](https://github.com/brunoscheufler), [Chigozirim C.](https://github.com/smac89), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Flarna](https://github.com/Flarna), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Hoàng Văn Khải](https://github.com/KSXGitHub), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nicolas Even](https://github.com/n-e), [
|
|
16
|
+
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [DefinitelyTyped](https://github.com/DefinitelyTyped), [Alberto Schiabel](https://github.com/jkomyno), [Alexander T.](https://github.com/a-tarasyuk), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Bruno Scheufler](https://github.com/brunoscheufler), [Chigozirim C.](https://github.com/smac89), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Flarna](https://github.com/Flarna), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Hoàng Văn Khải](https://github.com/KSXGitHub), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nicolas Even](https://github.com/n-e), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Simon Schick](https://github.com/SimonSchick), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Zane Hannan AU](https://github.com/ZaneHannanAU), [Jeremie Rodriguez](https://github.com/jeremiergz), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Jordi Oliveras Rovira](https://github.com/j-oliveras), [Thanik Bhongbhibhat](https://github.com/bhongy), [Minh Son Nguyen](https://github.com/nguymin4), and [ExE Boss](https://github.com/ExE-Boss).
|
node v10.17/child_process.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ declare module "child_process" {
|
|
|
11
11
|
stdio: [stream.Writable, stream.Readable, stream.Readable];
|
|
12
12
|
killed: boolean;
|
|
13
13
|
pid: number;
|
|
14
|
+
readonly exitCode: number | null;
|
|
15
|
+
readonly signalCode: number | null;
|
|
14
16
|
kill(signal?: string): void;
|
|
15
17
|
send(message: any, callback?: (error: Error) => void): boolean;
|
|
16
18
|
send(message: any, sendHandle?: net.Socket | net.Server, callback?: (error: Error) => void): boolean;
|
|
@@ -270,6 +272,7 @@ declare module "child_process" {
|
|
|
270
272
|
uid?: number;
|
|
271
273
|
gid?: number;
|
|
272
274
|
}
|
|
275
|
+
function fork(modulePath: string, options?: ForkOptions): ChildProcess;
|
|
273
276
|
function fork(modulePath: string, args?: ReadonlyArray<string>, options?: ForkOptions): ChildProcess;
|
|
274
277
|
|
|
275
278
|
interface SpawnSyncOptions {
|
node v10.17/index.d.ts
CHANGED
|
@@ -20,7 +20,6 @@
|
|
|
20
20
|
// Mariusz Wiktorczyk <https://github.com/mwiktorczyk>
|
|
21
21
|
// Mohsen Azimi <https://github.com/mohsen1>
|
|
22
22
|
// Nicolas Even <https://github.com/n-e>
|
|
23
|
-
// Nicolas Voigt <https://github.com/octo-sniffle>
|
|
24
23
|
// Nikita Galkin <https://github.com/galkin>
|
|
25
24
|
// Parambir Singh <https://github.com/parambirs>
|
|
26
25
|
// Sebastian Silbermann <https://github.com/eps1lon>
|
node v10.17/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.17.
|
|
3
|
+
"version": "10.17.28",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -104,11 +104,6 @@
|
|
|
104
104
|
"url": "https://github.com/n-e",
|
|
105
105
|
"githubUsername": "n-e"
|
|
106
106
|
},
|
|
107
|
-
{
|
|
108
|
-
"name": "Nicolas Voigt",
|
|
109
|
-
"url": "https://github.com/octo-sniffle",
|
|
110
|
-
"githubUsername": "octo-sniffle"
|
|
111
|
-
},
|
|
112
107
|
{
|
|
113
108
|
"name": "Nikita Galkin",
|
|
114
109
|
"url": "https://github.com/galkin",
|
|
@@ -206,6 +201,6 @@
|
|
|
206
201
|
},
|
|
207
202
|
"scripts": {},
|
|
208
203
|
"dependencies": {},
|
|
209
|
-
"typesPublisherContentHash": "
|
|
204
|
+
"typesPublisherContentHash": "9a24bca29e65e94002737d533b13e393b143fa9c9e2cfb7727ba3473b99219cf",
|
|
210
205
|
"typeScriptVersion": "3.0"
|
|
211
206
|
}
|