@types/node 13.13.0 → 13.13.1
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/README.md +1 -1
- node/child_process.d.ts +1 -1
- node/globals.d.ts +3 -3
- node/package.json +2 -2
node/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.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 20 Apr 2020 16:28:04 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node/child_process.d.ts
CHANGED
node/globals.d.ts
CHANGED
|
@@ -676,8 +676,8 @@ declare namespace NodeJS {
|
|
|
676
676
|
isTTY?: true;
|
|
677
677
|
}
|
|
678
678
|
|
|
679
|
-
// Alias for
|
|
680
|
-
|
|
679
|
+
// Alias for compatibility
|
|
680
|
+
interface ProcessEnv extends Dict<string> {}
|
|
681
681
|
|
|
682
682
|
interface HRTime {
|
|
683
683
|
(time?: [number, number]): [number, number];
|
|
@@ -787,7 +787,7 @@ declare namespace NodeJS {
|
|
|
787
787
|
cwd(): string;
|
|
788
788
|
debugPort: number;
|
|
789
789
|
emitWarning(warning: string | Error, name?: string, ctor?: Function): void;
|
|
790
|
-
env:
|
|
790
|
+
env: ProcessEnv;
|
|
791
791
|
exit(code?: number): never;
|
|
792
792
|
exitCode?: number;
|
|
793
793
|
getgid(): number;
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "13.13.
|
|
3
|
+
"version": "13.13.1",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -241,6 +241,6 @@
|
|
|
241
241
|
},
|
|
242
242
|
"scripts": {},
|
|
243
243
|
"dependencies": {},
|
|
244
|
-
"typesPublisherContentHash": "
|
|
244
|
+
"typesPublisherContentHash": "591b3799a73e412587cd03b0a69fd21b70f4b95fa606b60b698dc9c3f2593729",
|
|
245
245
|
"typeScriptVersion": "2.8"
|
|
246
246
|
}
|