@types/node 13.1.5 → 13.1.6

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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/module.d.ts +3 -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: Wed, 08 Jan 2020 21:13:03 GMT
11
+ * Last updated: Thu, 09 Jan 2020 16:03:44 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/module.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  declare module "module" {
2
2
  import { URL } from "url";
3
- interface Module extends NodeJS.Module {}
3
+ interface Module extends NodeModule {}
4
4
  class Module {
5
5
  static runMain(): void;
6
6
  static wrap(code: string): string;
@@ -8,8 +8,8 @@ declare module "module" {
8
8
  /**
9
9
  * @deprecated Deprecated since: v12.2.0. Please use createRequire() instead.
10
10
  */
11
- static createRequireFromPath(path: string): NodeJS.Require;
12
- static createRequire(path: string | URL): NodeJS.Require;
11
+ static createRequireFromPath(path: string): NodeRequire;
12
+ static createRequire(path: string | URL): NodeRequire;
13
13
  static builtinModules: string[];
14
14
 
15
15
  static Module: typeof Module;
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "13.1.5",
3
+ "version": "13.1.6",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -226,6 +226,6 @@
226
226
  },
227
227
  "scripts": {},
228
228
  "dependencies": {},
229
- "typesPublisherContentHash": "cab0ba474263473ba8b0a22304b7cff639a7c705471db994f6ab1bba53628052",
229
+ "typesPublisherContentHash": "b6f97cea68f1b08b624b3ff17e4c2906543398225cc4dacd4ee0f9fa847d6a06",
230
230
  "typeScriptVersion": "2.8"
231
231
  }