@types/node 16.4.0 → 16.4.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/timers.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, 20 Jul 2021 21:31:16 GMT
11
+ * Last updated: Thu, 22 Jul 2021 21:01:34 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
14
14
 
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "16.4.0",
3
+ "version": "16.4.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": "2ec5c8e3027bcb171df7f44d56e9c54b0fd1bbb9e1a658b14a3f5b1ba991635e",
230
+ "typesPublisherContentHash": "c4693e40021d8f74ac8231d993f896b5d73413a7bda76e4c20154be3cdee98ce",
231
231
  "typeScriptVersion": "3.6"
232
232
  }
node/timers.d.ts CHANGED
@@ -42,7 +42,7 @@ declare module 'timers' {
42
42
  function setTimeout<TArgs extends any[]>(callback: (...args: TArgs) => void, ms?: number, ...args: TArgs): NodeJS.Timeout;
43
43
  // util.promisify no rest args compability
44
44
  // tslint:disable-next-line void-return
45
- function setTimeout(callback: (args: void) => void): NodeJS.Timeout;
45
+ function setTimeout(callback: (args: void) => void, ms?: number): NodeJS.Timeout;
46
46
  namespace setTimeout {
47
47
  const __promisify__: typeof setTimeoutPromise;
48
48
  }