@types/node 20.2.0 → 20.2.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 (81) hide show
  1. node/README.md +1 -1
  2. node/assert.d.ts +1 -1
  3. node/async_hooks.d.ts +1 -1
  4. node/buffer.d.ts +4 -1
  5. node/child_process.d.ts +1 -1
  6. node/cluster.d.ts +1 -1
  7. node/console.d.ts +1 -1
  8. node/crypto.d.ts +1 -1
  9. node/dgram.d.ts +1 -1
  10. node/diagnostics_channel.d.ts +1 -1
  11. node/dns.d.ts +1 -1
  12. node/domain.d.ts +1 -1
  13. node/events.d.ts +1 -1
  14. node/fs/promises.d.ts +2 -1
  15. node/fs.d.ts +3 -2
  16. node/http.d.ts +1 -1
  17. node/http2.d.ts +1 -1
  18. node/https.d.ts +1 -1
  19. node/inspector.d.ts +1 -1
  20. node/net.d.ts +1 -1
  21. node/os.d.ts +1 -1
  22. node/package.json +2 -2
  23. node/path.d.ts +1 -1
  24. node/perf_hooks.d.ts +1 -1
  25. node/punycode.d.ts +1 -1
  26. node/querystring.d.ts +1 -1
  27. node/readline.d.ts +1 -1
  28. node/repl.d.ts +1 -1
  29. node/stream.d.ts +1 -1
  30. node/string_decoder.d.ts +1 -1
  31. node/test.d.ts +50 -27
  32. node/timers.d.ts +1 -1
  33. node/tls.d.ts +1 -1
  34. node/trace_events.d.ts +1 -1
  35. node/ts4.8/assert.d.ts +1 -1
  36. node/ts4.8/async_hooks.d.ts +1 -1
  37. node/ts4.8/buffer.d.ts +4 -1
  38. node/ts4.8/child_process.d.ts +2 -2
  39. node/ts4.8/cluster.d.ts +1 -1
  40. node/ts4.8/console.d.ts +1 -1
  41. node/ts4.8/crypto.d.ts +1 -1
  42. node/ts4.8/dgram.d.ts +1 -1
  43. node/ts4.8/diagnostics_channel.d.ts +1 -1
  44. node/ts4.8/dns.d.ts +1 -1
  45. node/ts4.8/domain.d.ts +1 -1
  46. node/ts4.8/events.d.ts +1 -1
  47. node/ts4.8/fs.d.ts +3 -2
  48. node/ts4.8/http.d.ts +5 -4
  49. node/ts4.8/http2.d.ts +1 -1
  50. node/ts4.8/https.d.ts +1 -1
  51. node/ts4.8/inspector.d.ts +1 -1
  52. node/ts4.8/net.d.ts +1 -1
  53. node/ts4.8/os.d.ts +1 -1
  54. node/ts4.8/path.d.ts +1 -1
  55. node/ts4.8/perf_hooks.d.ts +1 -1
  56. node/ts4.8/punycode.d.ts +1 -1
  57. node/ts4.8/querystring.d.ts +1 -1
  58. node/ts4.8/readline.d.ts +1 -1
  59. node/ts4.8/repl.d.ts +1 -1
  60. node/ts4.8/stream.d.ts +1 -1
  61. node/ts4.8/string_decoder.d.ts +1 -1
  62. node/ts4.8/test.d.ts +68 -50
  63. node/ts4.8/timers.d.ts +1 -1
  64. node/ts4.8/tls.d.ts +1 -1
  65. node/ts4.8/trace_events.d.ts +1 -1
  66. node/ts4.8/tty.d.ts +1 -1
  67. node/ts4.8/url.d.ts +14 -5
  68. node/ts4.8/util.d.ts +11 -3
  69. node/ts4.8/v8.d.ts +1 -1
  70. node/ts4.8/vm.d.ts +1 -1
  71. node/ts4.8/wasi.d.ts +1 -1
  72. node/ts4.8/worker_threads.d.ts +1 -1
  73. node/ts4.8/zlib.d.ts +1 -1
  74. node/tty.d.ts +1 -1
  75. node/url.d.ts +14 -5
  76. node/util.d.ts +1 -1
  77. node/v8.d.ts +1 -1
  78. node/vm.d.ts +1 -1
  79. node/wasi.d.ts +1 -1
  80. node/worker_threads.d.ts +1 -1
  81. node/zlib.d.ts +1 -1
node/worker_threads.d.ts CHANGED
@@ -49,7 +49,7 @@
49
49
  *
50
50
  * Worker threads inherit non-process-specific options by default. Refer to `Worker constructor options` to know how to customize worker thread options,
51
51
  * specifically `argv` and `execArgv` options.
52
- * @see [source](https://github.com/nodejs/node/blob/v20.1.0/lib/worker_threads.js)
52
+ * @see [source](https://github.com/nodejs/node/blob/v20.2.0/lib/worker_threads.js)
53
53
  */
54
54
  declare module 'worker_threads' {
55
55
  import { Blob } from 'node:buffer';
node/zlib.d.ts CHANGED
@@ -88,7 +88,7 @@
88
88
  * });
89
89
  * ```
90
90
  * @since v0.5.8
91
- * @see [source](https://github.com/nodejs/node/blob/v20.1.0/lib/zlib.js)
91
+ * @see [source](https://github.com/nodejs/node/blob/v20.2.0/lib/zlib.js)
92
92
  */
93
93
  declare module 'zlib' {
94
94
  import * as stream from 'node:stream';