@types/node 11.15.13 → 11.15.14

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 v11.15/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/v11.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Tue, 19 May 2020 18:08:51 GMT
11
+ * Last updated: Tue, 19 May 2020 23:09:34 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
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "11.15.13",
3
+ "version": "11.15.14",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -221,6 +221,6 @@
221
221
  },
222
222
  "scripts": {},
223
223
  "dependencies": {},
224
- "typesPublisherContentHash": "19fc5ada6c867ddfe7f501b928d83441631caace2e6c1b6a8013c3b5c0b313d9",
224
+ "typesPublisherContentHash": "00966d58ed51a1947f61ce096336d32a70e0d3b604d7a4bd7dea64a239b35892",
225
225
  "typeScriptVersion": "3.0"
226
226
  }
node v11.15/util.d.ts CHANGED
@@ -116,6 +116,7 @@ declare module "util" {
116
116
  function isAnyArrayBuffer(object: any): boolean;
117
117
  function isArgumentsObject(object: any): object is IArguments;
118
118
  function isArrayBuffer(object: any): object is ArrayBuffer;
119
+ function isArrayBufferView(object: any): object is ArrayBufferView;
119
120
  function isAsyncFunction(object: any): boolean;
120
121
  function isBooleanObject(object: any): object is Boolean;
121
122
  function isBoxedPrimitive(object: any): object is (Number | Boolean | String | Symbol /* | Object(BigInt) | Object(Symbol) */);