@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 +1 -1
- node v18.19/package.json +2 -2
- node v18.19/perf_hooks.d.ts +2 -2
- node v18.19/worker_threads.d.ts +1 -1
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
|
|
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
|
node v18.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.19.
|
|
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": "
|
|
223
|
+
"typesPublisherContentHash": "1105e3a5e5563aa665dd52809aea169bf92db33987d9b16a4bc5507ea674d0d5",
|
|
224
224
|
"typeScriptVersion": "5.1"
|
|
225
225
|
}
|
node v18.19/perf_hooks.d.ts
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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
|
node v18.19/worker_threads.d.ts
CHANGED
|
@@ -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
|
|
651
|
+
function setEnvironmentData(key: Serializable, value?: Serializable): void;
|
|
652
652
|
|
|
653
653
|
import {
|
|
654
654
|
BroadcastChannel as _BroadcastChannel,
|