@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 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: Fri, 17 Apr 2020 21:12:26 GMT
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
@@ -133,7 +133,7 @@ declare module "child_process" {
133
133
  uid?: number;
134
134
  gid?: number;
135
135
  cwd?: string;
136
- env?: NodeJS.Dict<string>;
136
+ env?: NodeJS.ProcessEnv;
137
137
  }
138
138
 
139
139
  interface CommonOptions extends ProcessEnvOptions {
node/globals.d.ts CHANGED
@@ -676,8 +676,8 @@ declare namespace NodeJS {
676
676
  isTTY?: true;
677
677
  }
678
678
 
679
- // Alias for compability
680
- type ProcessEnv = Dict<string>;
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: Dict<string>;
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.0",
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": "4f8a799311cb18d7931c234954099ba8b81f773e68db688d35c6bc5dc7485e4b",
244
+ "typesPublisherContentHash": "591b3799a73e412587cd03b0a69fd21b70f4b95fa606b60b698dc9c3f2593729",
245
245
  "typeScriptVersion": "2.8"
246
246
  }