@types/node 12.12.38 → 12.12.39
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 v12.12/README.md +1 -1
- node v12.12/child_process.d.ts +5 -1
- node v12.12/package.json +2 -2
node v12.12/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/v12.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 13 May 2020 00:31:47 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `NodeJS`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v12.12/child_process.d.ts
CHANGED
|
@@ -18,7 +18,11 @@ declare module "child_process" {
|
|
|
18
18
|
readonly killed: boolean;
|
|
19
19
|
readonly pid: number;
|
|
20
20
|
readonly connected: boolean;
|
|
21
|
-
|
|
21
|
+
readonly exitCode: number | null;
|
|
22
|
+
readonly signalCode: number | null;
|
|
23
|
+
readonly spawnargs: string[];
|
|
24
|
+
readonly spawnfile: string;
|
|
25
|
+
kill(signal?: NodeJS.Signals | number): boolean;
|
|
22
26
|
send(message: any, callback?: (error: Error | null) => void): boolean;
|
|
23
27
|
send(message: any, sendHandle?: net.Socket | net.Server, callback?: (error: Error | null) => void): boolean;
|
|
24
28
|
send(message: any, sendHandle?: net.Socket | net.Server, options?: MessageOptions, callback?: (error: Error | null) => void): boolean;
|
node v12.12/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "12.12.
|
|
3
|
+
"version": "12.12.39",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -236,6 +236,6 @@
|
|
|
236
236
|
},
|
|
237
237
|
"scripts": {},
|
|
238
238
|
"dependencies": {},
|
|
239
|
-
"typesPublisherContentHash": "
|
|
239
|
+
"typesPublisherContentHash": "c8bad94901ed055411bd066cf63b334fb6bcc85fa7804ff7008c06d21f7f7b6e",
|
|
240
240
|
"typeScriptVersion": "2.9"
|
|
241
241
|
}
|