@types/node 12.11.0 → 12.11.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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/package.json +2 -2
  3. node/util.d.ts +1 -1
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: Tue, 15 Oct 2019 21:18:58 GMT
11
+ * Last updated: Tue, 15 Oct 2019 23:57:18 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "12.11.0",
3
+ "version": "12.11.1",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -211,6 +211,6 @@
211
211
  },
212
212
  "scripts": {},
213
213
  "dependencies": {},
214
- "typesPublisherContentHash": "495a2facfa1ddb82cb6b5a5cf583e18881c7d1924d028cc981386975ce73e797",
214
+ "typesPublisherContentHash": "9ac4a6964ec22ccb1141052fab85bf0d16247a1dfe5c2f2328c19440915c36ef",
215
215
  "typeScriptVersion": "2.0"
216
216
  }
node/util.d.ts CHANGED
@@ -51,7 +51,7 @@ declare module "util" {
51
51
  function isSymbol(object: any): object is symbol;
52
52
  /** @deprecated since v4.0.0 - use `value === undefined` instead. */
53
53
  function isUndefined(object: any): object is undefined;
54
- function deprecate<T extends Function>(fn: T, message: string): T;
54
+ function deprecate<T extends Function>(fn: T, message: string, code?: string): T;
55
55
  function isDeepStrictEqual(val1: any, val2: any): boolean;
56
56
 
57
57
  interface CustomPromisify<TCustom extends Function> extends Function {