@types/node 20.14.6 → 20.14.7
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/README.md +1 -1
- node/child_process.d.ts +2 -2
- node/package.json +2 -2
node/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.
|
9
9
|
|
10
10
|
### Additional Details
|
11
|
-
* Last updated:
|
11
|
+
* Last updated: Thu, 20 Jun 2024 21:07:25 GMT
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
13
13
|
|
14
14
|
# Credits
|
node/child_process.d.ts
CHANGED
@@ -1391,8 +1391,8 @@ declare module "child_process" {
|
|
1391
1391
|
* @param modulePath The module to run in the child.
|
1392
1392
|
* @param args List of string arguments.
|
1393
1393
|
*/
|
1394
|
-
function fork(modulePath: string, options?: ForkOptions): ChildProcess;
|
1395
|
-
function fork(modulePath: string, args?: readonly string[], options?: ForkOptions): ChildProcess;
|
1394
|
+
function fork(modulePath: string | URL, options?: ForkOptions): ChildProcess;
|
1395
|
+
function fork(modulePath: string | URL, args?: readonly string[], options?: ForkOptions): ChildProcess;
|
1396
1396
|
interface SpawnSyncOptions extends CommonSpawnOptions {
|
1397
1397
|
input?: string | NodeJS.ArrayBufferView | undefined;
|
1398
1398
|
maxBuffer?: number | undefined;
|
node/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@types/node",
|
3
|
-
"version": "20.14.
|
3
|
+
"version": "20.14.7",
|
4
4
|
"description": "TypeScript definitions for node",
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
6
6
|
"license": "MIT",
|
@@ -212,6 +212,6 @@
|
|
212
212
|
"dependencies": {
|
213
213
|
"undici-types": "~5.26.4"
|
214
214
|
},
|
215
|
-
"typesPublisherContentHash": "
|
215
|
+
"typesPublisherContentHash": "e79282850f387d1bca6eea06eccb5f41cc0418e1cdf8351686abc23d073af52d",
|
216
216
|
"typeScriptVersion": "4.7"
|
217
217
|
}
|