@types/node 18.16.7 → 18.16.9
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.16/README.md +1 -1
- node v18.16/child_process.d.ts +27 -0
- node v18.16/dns.d.ts +1 -0
- node v18.16/package.json +2 -2
- node v18.16/ts4.8/child_process.d.ts +27 -0
- node v18.16/ts4.8/dns.d.ts +1 -0
node v18.16/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (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: Sat, 13 May 2023 14:32:54 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
|
|
14
14
|
|
node v18.16/child_process.d.ts
CHANGED
|
@@ -634,6 +634,15 @@ declare module 'child_process' {
|
|
|
634
634
|
}
|
|
635
635
|
interface CommonSpawnOptions extends CommonOptions, MessagingOptions, Abortable {
|
|
636
636
|
argv0?: string | undefined;
|
|
637
|
+
/**
|
|
638
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
639
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
640
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
641
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
642
|
+
* {@link ChildProcess.stdio} for more information.
|
|
643
|
+
*
|
|
644
|
+
* @default 'pipe'
|
|
645
|
+
*/
|
|
637
646
|
stdio?: StdioOptions | undefined;
|
|
638
647
|
shell?: boolean | string | undefined;
|
|
639
648
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -1195,6 +1204,15 @@ declare module 'child_process' {
|
|
|
1195
1204
|
execPath?: string | undefined;
|
|
1196
1205
|
execArgv?: string[] | undefined;
|
|
1197
1206
|
silent?: boolean | undefined;
|
|
1207
|
+
/**
|
|
1208
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
1209
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
1210
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
1211
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
1212
|
+
* {@link ChildProcess.stdio} for more information.
|
|
1213
|
+
*
|
|
1214
|
+
* @default 'pipe'
|
|
1215
|
+
*/
|
|
1198
1216
|
stdio?: StdioOptions | undefined;
|
|
1199
1217
|
detached?: boolean | undefined;
|
|
1200
1218
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -1295,6 +1313,15 @@ declare module 'child_process' {
|
|
|
1295
1313
|
function spawnSync(command: string, args?: ReadonlyArray<string>, options?: SpawnSyncOptions): SpawnSyncReturns<string | Buffer>;
|
|
1296
1314
|
interface CommonExecOptions extends CommonOptions {
|
|
1297
1315
|
input?: string | NodeJS.ArrayBufferView | undefined;
|
|
1316
|
+
/**
|
|
1317
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
1318
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
1319
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
1320
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
1321
|
+
* {@link ChildProcess.stdio} for more information.
|
|
1322
|
+
*
|
|
1323
|
+
* @default 'pipe'
|
|
1324
|
+
*/
|
|
1298
1325
|
stdio?: StdioOptions | undefined;
|
|
1299
1326
|
killSignal?: NodeJS.Signals | number | undefined;
|
|
1300
1327
|
maxBuffer?: number | undefined;
|
node v18.16/dns.d.ts
CHANGED
|
@@ -625,6 +625,7 @@ declare module 'dns' {
|
|
|
625
625
|
resolve4: typeof resolve4;
|
|
626
626
|
resolve6: typeof resolve6;
|
|
627
627
|
resolveAny: typeof resolveAny;
|
|
628
|
+
resolveCaa: typeof resolveCaa;
|
|
628
629
|
resolveCname: typeof resolveCname;
|
|
629
630
|
resolveMx: typeof resolveMx;
|
|
630
631
|
resolveNaptr: typeof resolveNaptr;
|
node v18.16/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.16.
|
|
3
|
+
"version": "18.16.9",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -232,6 +232,6 @@
|
|
|
232
232
|
},
|
|
233
233
|
"scripts": {},
|
|
234
234
|
"dependencies": {},
|
|
235
|
-
"typesPublisherContentHash": "
|
|
235
|
+
"typesPublisherContentHash": "29fe5d40e23dc41e805a3341ce551db6978006f4595a628937779cb9bfb917e2",
|
|
236
236
|
"typeScriptVersion": "4.3"
|
|
237
237
|
}
|
|
@@ -634,6 +634,15 @@ declare module 'child_process' {
|
|
|
634
634
|
}
|
|
635
635
|
interface CommonSpawnOptions extends CommonOptions, MessagingOptions, Abortable {
|
|
636
636
|
argv0?: string | undefined;
|
|
637
|
+
/**
|
|
638
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
639
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
640
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
641
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
642
|
+
* {@link ChildProcess.stdio} for more information.
|
|
643
|
+
*
|
|
644
|
+
* @default 'pipe'
|
|
645
|
+
*/
|
|
637
646
|
stdio?: StdioOptions | undefined;
|
|
638
647
|
shell?: boolean | string | undefined;
|
|
639
648
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -1195,6 +1204,15 @@ declare module 'child_process' {
|
|
|
1195
1204
|
execPath?: string | undefined;
|
|
1196
1205
|
execArgv?: string[] | undefined;
|
|
1197
1206
|
silent?: boolean | undefined;
|
|
1207
|
+
/**
|
|
1208
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
1209
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
1210
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
1211
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
1212
|
+
* {@link ChildProcess.stdio} for more information.
|
|
1213
|
+
*
|
|
1214
|
+
* @default 'pipe'
|
|
1215
|
+
*/
|
|
1198
1216
|
stdio?: StdioOptions | undefined;
|
|
1199
1217
|
detached?: boolean | undefined;
|
|
1200
1218
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -1295,6 +1313,15 @@ declare module 'child_process' {
|
|
|
1295
1313
|
function spawnSync(command: string, args?: ReadonlyArray<string>, options?: SpawnSyncOptions): SpawnSyncReturns<string | Buffer>;
|
|
1296
1314
|
interface CommonExecOptions extends CommonOptions {
|
|
1297
1315
|
input?: string | NodeJS.ArrayBufferView | undefined;
|
|
1316
|
+
/**
|
|
1317
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
1318
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
1319
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
1320
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
1321
|
+
* {@link ChildProcess.stdio} for more information.
|
|
1322
|
+
*
|
|
1323
|
+
* @default 'pipe'
|
|
1324
|
+
*/
|
|
1298
1325
|
stdio?: StdioOptions | undefined;
|
|
1299
1326
|
killSignal?: NodeJS.Signals | number | undefined;
|
|
1300
1327
|
maxBuffer?: number | undefined;
|
node v18.16/ts4.8/dns.d.ts
CHANGED
|
@@ -625,6 +625,7 @@ declare module 'dns' {
|
|
|
625
625
|
resolve4: typeof resolve4;
|
|
626
626
|
resolve6: typeof resolve6;
|
|
627
627
|
resolveAny: typeof resolveAny;
|
|
628
|
+
resolveCaa: typeof resolveCaa;
|
|
628
629
|
resolveCname: typeof resolveCname;
|
|
629
630
|
resolveMx: typeof resolveMx;
|
|
630
631
|
resolveNaptr: typeof resolveNaptr;
|