@types/node 10.14.21 → 10.14.22

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 v10/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/v10
9
9
 
10
10
  Additional Details
11
- * Last updated: Tue, 08 Oct 2019 20:17:23 GMT
11
+ * Last updated: Tue, 15 Oct 2019 23:57:19 GMT
12
12
  * Dependencies: none
13
13
  * Global values: Buffer, NodeJS, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
14
14
 
node v10/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "10.14.21",
3
+ "version": "10.14.22",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -196,6 +196,6 @@
196
196
  },
197
197
  "scripts": {},
198
198
  "dependencies": {},
199
- "typesPublisherContentHash": "924b590dc6d0b46b4c01b2cf4b99240232682e4929e6ba050c57f5e49a8a9538",
199
+ "typesPublisherContentHash": "3f864f86f77bc96fb3745fc268fbb6281fed8b0418147685f07d8a5abd582e95",
200
200
  "typeScriptVersion": "2.0"
201
201
  }
node v10/util.d.ts CHANGED
@@ -55,7 +55,7 @@ declare module "util" {
55
55
  function isSymbol(object: any): object is symbol;
56
56
  /** @deprecated since v4.0.0 - use `value === undefined` instead. */
57
57
  function isUndefined(object: any): object is undefined;
58
- function deprecate<T extends Function>(fn: T, message: string): T;
58
+ function deprecate<T extends Function>(fn: T, message: string, code?: string): T;
59
59
  function isDeepStrictEqual(val1: any, val2: any): boolean;
60
60
 
61
61
  interface CustomPromisify<TCustom extends Function> extends Function {