@types/node 15.12.0 → 15.12.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/globals.d.ts +1 -5
  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: Thu, 03 Jun 2021 14:01:34 GMT
11
+ * Last updated: Fri, 04 Jun 2021 16:31:37 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `AbortController`, `AbortSignal`, `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
14
14
 
node/globals.d.ts CHANGED
@@ -332,11 +332,6 @@ interface AbortSignal {
332
332
  * Returns true if this AbortSignal's AbortController has signaled to abort, and false otherwise.
333
333
  */
334
334
  readonly aborted: boolean;
335
-
336
- /**
337
- * Invoking this method will set this object's AbortSignal's aborted flag and signal to any observers that the associated activity is to be aborted.
338
- */
339
- abort(): void;
340
335
  }
341
336
 
342
337
  declare var AbortController: {
@@ -347,6 +342,7 @@ declare var AbortController: {
347
342
  declare var AbortSignal: {
348
343
  prototype: AbortSignal;
349
344
  new(): AbortSignal;
345
+ // TODO: Add abort() static
350
346
  };
351
347
  //#endregion borrowed
352
348
 
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "15.12.0",
3
+ "version": "15.12.1",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -227,6 +227,6 @@
227
227
  },
228
228
  "scripts": {},
229
229
  "dependencies": {},
230
- "typesPublisherContentHash": "2af6053c97f2d873b354fa2bd898df70fe2271585814d07e724e3f12c08d719e",
230
+ "typesPublisherContentHash": "c5eebcafad4271376ee5a2d516756464cef353232ac06db91239887b14f7f29a",
231
231
  "typeScriptVersion": "3.6"
232
232
  }