@types/node 18.19.106 → 18.19.107

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 v18.19/README.md CHANGED
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v18.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Thu, 29 May 2025 22:36:39 GMT
11
+ * Last updated: Thu, 29 May 2025 23:02:21 GMT
12
12
  * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
13
 
14
14
  # Credits
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "18.19.106",
3
+ "version": "18.19.107",
4
4
  "description": "TypeScript definitions for node",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -220,6 +220,6 @@
220
220
  "undici-types": "~5.26.4"
221
221
  },
222
222
  "peerDependencies": {},
223
- "typesPublisherContentHash": "9d6fd703c64b175102c15a5a5477338befad6ee1390af61a06c9de7eaa1e4434",
223
+ "typesPublisherContentHash": "1105e3a5e5563aa665dd52809aea169bf92db33987d9b16a4bc5507ea674d0d5",
224
224
  "typeScriptVersion": "5.1"
225
225
  }
@@ -823,12 +823,12 @@ declare module "perf_hooks" {
823
823
  * The minimum recordable value. Must be an integer value greater than 0.
824
824
  * @default 1
825
825
  */
826
- min?: number | bigint | undefined;
826
+ lowest?: number | bigint | undefined;
827
827
  /**
828
828
  * The maximum recordable value. Must be an integer value greater than min.
829
829
  * @default Number.MAX_SAFE_INTEGER
830
830
  */
831
- max?: number | bigint | undefined;
831
+ highest?: number | bigint | undefined;
832
832
  /**
833
833
  * The number of accuracy digits. Must be a number between 1 and 5.
834
834
  * @default 3
@@ -648,7 +648,7 @@ declare module "worker_threads" {
648
648
  * @param value Any arbitrary, cloneable JavaScript value that will be cloned and passed automatically to all new `Worker` instances. If `value` is passed as `undefined`, any previously set value
649
649
  * for the `key` will be deleted.
650
650
  */
651
- function setEnvironmentData(key: Serializable, value: Serializable): void;
651
+ function setEnvironmentData(key: Serializable, value?: Serializable): void;
652
652
 
653
653
  import {
654
654
  BroadcastChannel as _BroadcastChannel,