@types/node 18.19.37 → 18.19.38
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/child_process.d.ts +2 -2
- node v18.19/package.json +2 -2
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:
|
|
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 v18.19/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 v18.19/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.19.
|
|
3
|
+
"version": "18.19.38",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -217,6 +217,6 @@
|
|
|
217
217
|
"dependencies": {
|
|
218
218
|
"undici-types": "~5.26.4"
|
|
219
219
|
},
|
|
220
|
-
"typesPublisherContentHash": "
|
|
220
|
+
"typesPublisherContentHash": "cc599c07e2a574410f619799725fadb07e99312f7eadc180fb0a7a2e46c13fd1",
|
|
221
221
|
"typeScriptVersion": "4.7"
|
|
222
222
|
}
|