@types/node 14.10.1 → 14.10.2

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 (47) hide show
  1. node/README.md +1 -1
  2. node/{ts3.1/async_hooks.d.ts → async_hooks.d.ts} +0 -0
  3. node/{ts3.1/buffer.d.ts → buffer.d.ts} +0 -0
  4. node/{ts3.1/child_process.d.ts → child_process.d.ts} +0 -0
  5. node/{ts3.1/cluster.d.ts → cluster.d.ts} +0 -0
  6. node/{ts3.1/console.d.ts → console.d.ts} +0 -0
  7. node/{ts3.1/constants.d.ts → constants.d.ts} +0 -0
  8. node/{ts3.1/crypto.d.ts → crypto.d.ts} +0 -0
  9. node/{ts3.1/dgram.d.ts → dgram.d.ts} +0 -0
  10. node/{ts3.1/dns.d.ts → dns.d.ts} +0 -0
  11. node/{ts3.1/domain.d.ts → domain.d.ts} +0 -0
  12. node/{ts3.1/events.d.ts → events.d.ts} +0 -0
  13. node/{ts3.1/fs → fs}/promises.d.ts +0 -0
  14. node/{ts3.4/fs.d.ts → fs.d.ts} +1 -1
  15. node/{ts3.4/globals.d.ts → globals.d.ts} +1 -1
  16. node/{ts3.6/globals.global.d.ts → globals.global.d.ts} +0 -0
  17. node/{ts3.1/http.d.ts → http.d.ts} +0 -0
  18. node/{ts3.1/http2.d.ts → http2.d.ts} +0 -0
  19. node/{ts3.1/https.d.ts → https.d.ts} +0 -0
  20. node/{ts3.1/inspector.d.ts → inspector.d.ts} +0 -0
  21. node/{ts3.1/module.d.ts → module.d.ts} +0 -0
  22. node/{ts3.1/net.d.ts → net.d.ts} +0 -0
  23. node/{ts3.1/os.d.ts → os.d.ts} +0 -0
  24. node/package.json +3 -3
  25. node/{ts3.1/path.d.ts → path.d.ts} +0 -0
  26. node/{ts3.1/perf_hooks.d.ts → perf_hooks.d.ts} +0 -0
  27. node/{ts3.4/process.d.ts → process.d.ts} +1 -1
  28. node/{ts3.1/punycode.d.ts → punycode.d.ts} +0 -0
  29. node/{ts3.1/querystring.d.ts → querystring.d.ts} +0 -0
  30. node/{ts3.1/readline.d.ts → readline.d.ts} +0 -0
  31. node/{ts3.1/repl.d.ts → repl.d.ts} +0 -0
  32. node/{ts3.1/stream.d.ts → stream.d.ts} +0 -0
  33. node/{ts3.1/string_decoder.d.ts → string_decoder.d.ts} +0 -0
  34. node/{ts3.1/timers.d.ts → timers.d.ts} +0 -0
  35. node/{ts3.1/tls.d.ts → tls.d.ts} +0 -0
  36. node/{ts3.1/trace_events.d.ts → trace_events.d.ts} +0 -0
  37. node/ts3.1/base.d.ts +36 -36
  38. node/ts3.4/base.d.ts +4 -4
  39. node/ts3.6/base.d.ts +2 -2
  40. node/{ts3.1/tty.d.ts → tty.d.ts} +0 -0
  41. node/{ts3.1/url.d.ts → url.d.ts} +0 -0
  42. node/{ts3.4/util.d.ts → util.d.ts} +1 -1
  43. /node/{ts3.1/v8.d.ts → v8.d.ts} +0 -0
  44. /node/{ts3.1/vm.d.ts → vm.d.ts} +0 -0
  45. /node/{ts3.6/wasi.d.ts → wasi.d.ts} +0 -0
  46. /node/{ts3.1/worker_threads.d.ts → worker_threads.d.ts} +0 -0
  47. /node/{ts3.1/zlib.d.ts → zlib.d.ts} +0 -0
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: Fri, 11 Sep 2020 16:36:27 GMT
11
+ * Last updated: Tue, 15 Sep 2020 18:22:44 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`, `Symbol`
14
14
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  // tslint:disable-next-line:no-bad-reference
2
- /// <reference path="../ts3.1/fs.d.ts" />
2
+ /// <reference path="ts3.1/fs.d.ts" />
3
3
 
4
4
  declare module 'fs' {
5
5
  interface BigIntStats extends StatsBase<bigint> {
@@ -1,5 +1,5 @@
1
1
  // tslint:disable-next-line:no-bad-reference
2
- /// <reference path="../ts3.1/globals.d.ts" />
2
+ /// <reference path="ts3.1/globals.d.ts" />
3
3
 
4
4
  interface Buffer extends Uint8Array {
5
5
  readBigUInt64BE(offset?: number): bigint;
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "14.10.1",
3
+ "version": "14.10.2",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "contributors": [
@@ -246,6 +246,6 @@
246
246
  },
247
247
  "scripts": {},
248
248
  "dependencies": {},
249
- "typesPublisherContentHash": "b022f3ba74691f5df061333d238cc0b27b5f5a9bd8dadfeb49c0c8cfb41527a6",
250
- "typeScriptVersion": "3.1"
249
+ "typesPublisherContentHash": "c035e49052c66e28eba881821f7c0c14fef24b09e49fb63a8aa08ee7f138ac67",
250
+ "typeScriptVersion": "3.2"
251
251
  }
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  // tslint:disable-next-line:no-bad-reference
2
- /// <reference path="../ts3.1/process.d.ts" />
2
+ /// <reference path="ts3.1/process.d.ts" />
3
3
 
4
4
  declare module 'process' {
5
5
  global {
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
node/ts3.1/base.d.ts CHANGED
@@ -1,42 +1,42 @@
1
1
  // base definitions for all NodeJS modules that are not specific to any version of TypeScript
2
2
 
3
3
  /// <reference path="globals.d.ts" />
4
- /// <reference path="async_hooks.d.ts" />
5
- /// <reference path="buffer.d.ts" />
6
- /// <reference path="child_process.d.ts" />
7
- /// <reference path="cluster.d.ts" />
8
- /// <reference path="console.d.ts" />
9
- /// <reference path="constants.d.ts" />
10
- /// <reference path="crypto.d.ts" />
11
- /// <reference path="dgram.d.ts" />
12
- /// <reference path="dns.d.ts" />
13
- /// <reference path="domain.d.ts" />
14
- /// <reference path="events.d.ts" />
4
+ /// <reference path="../async_hooks.d.ts" />
5
+ /// <reference path="../buffer.d.ts" />
6
+ /// <reference path="../child_process.d.ts" />
7
+ /// <reference path="../cluster.d.ts" />
8
+ /// <reference path="../console.d.ts" />
9
+ /// <reference path="../constants.d.ts" />
10
+ /// <reference path="../crypto.d.ts" />
11
+ /// <reference path="../dgram.d.ts" />
12
+ /// <reference path="../dns.d.ts" />
13
+ /// <reference path="../domain.d.ts" />
14
+ /// <reference path="../events.d.ts" />
15
15
  /// <reference path="fs.d.ts" />
16
- /// <reference path="fs/promises.d.ts" />
17
- /// <reference path="http.d.ts" />
18
- /// <reference path="http2.d.ts" />
19
- /// <reference path="https.d.ts" />
20
- /// <reference path="inspector.d.ts" />
21
- /// <reference path="module.d.ts" />
22
- /// <reference path="net.d.ts" />
23
- /// <reference path="os.d.ts" />
24
- /// <reference path="path.d.ts" />
25
- /// <reference path="perf_hooks.d.ts" />
16
+ /// <reference path="../fs/promises.d.ts" />
17
+ /// <reference path="../http.d.ts" />
18
+ /// <reference path="../http2.d.ts" />
19
+ /// <reference path="../https.d.ts" />
20
+ /// <reference path="../inspector.d.ts" />
21
+ /// <reference path="../module.d.ts" />
22
+ /// <reference path="../net.d.ts" />
23
+ /// <reference path="../os.d.ts" />
24
+ /// <reference path="../path.d.ts" />
25
+ /// <reference path="../perf_hooks.d.ts" />
26
26
  /// <reference path="process.d.ts" />
27
- /// <reference path="punycode.d.ts" />
28
- /// <reference path="querystring.d.ts" />
29
- /// <reference path="readline.d.ts" />
30
- /// <reference path="repl.d.ts" />
31
- /// <reference path="stream.d.ts" />
32
- /// <reference path="string_decoder.d.ts" />
33
- /// <reference path="timers.d.ts" />
34
- /// <reference path="tls.d.ts" />
35
- /// <reference path="trace_events.d.ts" />
36
- /// <reference path="tty.d.ts" />
37
- /// <reference path="url.d.ts" />
27
+ /// <reference path="../punycode.d.ts" />
28
+ /// <reference path="../querystring.d.ts" />
29
+ /// <reference path="../readline.d.ts" />
30
+ /// <reference path="../repl.d.ts" />
31
+ /// <reference path="../stream.d.ts" />
32
+ /// <reference path="../string_decoder.d.ts" />
33
+ /// <reference path="../timers.d.ts" />
34
+ /// <reference path="../tls.d.ts" />
35
+ /// <reference path="../trace_events.d.ts" />
36
+ /// <reference path="../tty.d.ts" />
37
+ /// <reference path="../url.d.ts" />
38
38
  /// <reference path="util.d.ts" />
39
- /// <reference path="v8.d.ts" />
40
- /// <reference path="vm.d.ts" />
41
- /// <reference path="worker_threads.d.ts" />
42
- /// <reference path="zlib.d.ts" />
39
+ /// <reference path="../v8.d.ts" />
40
+ /// <reference path="../vm.d.ts" />
41
+ /// <reference path="../worker_threads.d.ts" />
42
+ /// <reference path="../zlib.d.ts" />
node/ts3.4/base.d.ts CHANGED
@@ -17,7 +17,7 @@
17
17
  /// <reference path="../ts3.1/base.d.ts" />
18
18
 
19
19
  // TypeScript 3.2-specific augmentations:
20
- /// <reference path="fs.d.ts" />
21
- /// <reference path="process.d.ts" />
22
- /// <reference path="util.d.ts" />
23
- /// <reference path="globals.d.ts" />
20
+ /// <reference path="../fs.d.ts" />
21
+ /// <reference path="../process.d.ts" />
22
+ /// <reference path="../util.d.ts" />
23
+ /// <reference path="../globals.d.ts" />
node/ts3.6/base.d.ts CHANGED
@@ -17,7 +17,7 @@
17
17
  /// <reference path="../ts3.4/base.d.ts" />
18
18
 
19
19
  // TypeScript 3.5-specific augmentations:
20
- /// <reference path="globals.global.d.ts" />
20
+ /// <reference path="../globals.global.d.ts" />
21
21
 
22
22
  // TypeScript 3.5-specific augmentations:
23
- /// <reference path="wasi.d.ts" />
23
+ /// <reference path="../wasi.d.ts" />
File without changes
File without changes
@@ -1,5 +1,5 @@
1
1
  // tslint:disable-next-line:no-bad-reference
2
- /// <reference path="../ts3.1/util.d.ts" />
2
+ /// <reference path="ts3.1/util.d.ts" />
3
3
 
4
4
  declare module "util" {
5
5
  namespace types {
File without changes
File without changes
File without changes
File without changes
File without changes