@types/node 16.18.28 → 16.18.30

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 v16.18/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/v16.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 10 May 2023 08:02:56 GMT
11
+ * Last updated: Sat, 13 May 2023 14:32:56 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
14
14
 
@@ -631,6 +631,15 @@ declare module 'child_process' {
631
631
  }
632
632
  interface CommonSpawnOptions extends CommonOptions, MessagingOptions, Abortable {
633
633
  argv0?: string | undefined;
634
+ /**
635
+ * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
636
+ * If passed as an array, the first element is used for `stdin`, the second for
637
+ * `stdout`, and the third for `stderr`. A fourth element can be used to
638
+ * specify the `stdio` behavior beyond the standard streams. See
639
+ * {@link ChildProcess.stdio} for more information.
640
+ *
641
+ * @default 'pipe'
642
+ */
634
643
  stdio?: StdioOptions | undefined;
635
644
  shell?: boolean | string | undefined;
636
645
  windowsVerbatimArguments?: boolean | undefined;
@@ -1192,6 +1201,15 @@ declare module 'child_process' {
1192
1201
  execPath?: string | undefined;
1193
1202
  execArgv?: string[] | undefined;
1194
1203
  silent?: boolean | undefined;
1204
+ /**
1205
+ * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
1206
+ * If passed as an array, the first element is used for `stdin`, the second for
1207
+ * `stdout`, and the third for `stderr`. A fourth element can be used to
1208
+ * specify the `stdio` behavior beyond the standard streams. See
1209
+ * {@link ChildProcess.stdio} for more information.
1210
+ *
1211
+ * @default 'pipe'
1212
+ */
1195
1213
  stdio?: StdioOptions | undefined;
1196
1214
  detached?: boolean | undefined;
1197
1215
  windowsVerbatimArguments?: boolean | undefined;
@@ -1292,6 +1310,15 @@ declare module 'child_process' {
1292
1310
  function spawnSync(command: string, args?: ReadonlyArray<string>, options?: SpawnSyncOptions): SpawnSyncReturns<string | Buffer>;
1293
1311
  interface CommonExecOptions extends CommonOptions {
1294
1312
  input?: string | NodeJS.ArrayBufferView | undefined;
1313
+ /**
1314
+ * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
1315
+ * If passed as an array, the first element is used for `stdin`, the second for
1316
+ * `stdout`, and the third for `stderr`. A fourth element can be used to
1317
+ * specify the `stdio` behavior beyond the standard streams. See
1318
+ * {@link ChildProcess.stdio} for more information.
1319
+ *
1320
+ * @default 'pipe'
1321
+ */
1295
1322
  stdio?: StdioOptions | undefined;
1296
1323
  killSignal?: NodeJS.Signals | number | undefined;
1297
1324
  maxBuffer?: number | undefined;
@@ -350,6 +350,7 @@ declare module 'dns/promises' {
350
350
  resolve4: typeof resolve4;
351
351
  resolve6: typeof resolve6;
352
352
  resolveAny: typeof resolveAny;
353
+ resolveCaa: typeof resolveCaa;
353
354
  resolveCname: typeof resolveCname;
354
355
  resolveMx: typeof resolveMx;
355
356
  resolveNaptr: typeof resolveNaptr;
node v16.18/dns.d.ts CHANGED
@@ -620,6 +620,7 @@ declare module 'dns' {
620
620
  resolve4: typeof resolve4;
621
621
  resolve6: typeof resolve6;
622
622
  resolveAny: typeof resolveAny;
623
+ resolveCaa: typeof resolveCaa;
623
624
  resolveCname: typeof resolveCname;
624
625
  resolveMx: typeof resolveMx;
625
626
  resolveNaptr: typeof resolveNaptr;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "16.18.28",
3
+ "version": "16.18.30",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -227,6 +227,6 @@
227
227
  },
228
228
  "scripts": {},
229
229
  "dependencies": {},
230
- "typesPublisherContentHash": "cdc7cb370f95a6ddd2d404d46596bdf5d48c85fb0de60d2509800a49e155d6a2",
230
+ "typesPublisherContentHash": "af27c09b28ceda177028e8907535281ce73f5a48550a5925dbe3098e9668e36a",
231
231
  "typeScriptVersion": "4.3"
232
232
  }
@@ -631,6 +631,15 @@ declare module 'child_process' {
631
631
  }
632
632
  interface CommonSpawnOptions extends CommonOptions, MessagingOptions, Abortable {
633
633
  argv0?: string | undefined;
634
+ /**
635
+ * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
636
+ * If passed as an array, the first element is used for `stdin`, the second for
637
+ * `stdout`, and the third for `stderr`. A fourth element can be used to
638
+ * specify the `stdio` behavior beyond the standard streams. See
639
+ * {@link ChildProcess.stdio} for more information.
640
+ *
641
+ * @default 'pipe'
642
+ */
634
643
  stdio?: StdioOptions | undefined;
635
644
  shell?: boolean | string | undefined;
636
645
  windowsVerbatimArguments?: boolean | undefined;
@@ -1192,6 +1201,15 @@ declare module 'child_process' {
1192
1201
  execPath?: string | undefined;
1193
1202
  execArgv?: string[] | undefined;
1194
1203
  silent?: boolean | undefined;
1204
+ /**
1205
+ * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
1206
+ * If passed as an array, the first element is used for `stdin`, the second for
1207
+ * `stdout`, and the third for `stderr`. A fourth element can be used to
1208
+ * specify the `stdio` behavior beyond the standard streams. See
1209
+ * {@link ChildProcess.stdio} for more information.
1210
+ *
1211
+ * @default 'pipe'
1212
+ */
1195
1213
  stdio?: StdioOptions | undefined;
1196
1214
  detached?: boolean | undefined;
1197
1215
  windowsVerbatimArguments?: boolean | undefined;
@@ -1292,6 +1310,15 @@ declare module 'child_process' {
1292
1310
  function spawnSync(command: string, args?: ReadonlyArray<string>, options?: SpawnSyncOptions): SpawnSyncReturns<string | Buffer>;
1293
1311
  interface CommonExecOptions extends CommonOptions {
1294
1312
  input?: string | NodeJS.ArrayBufferView | undefined;
1313
+ /**
1314
+ * Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
1315
+ * If passed as an array, the first element is used for `stdin`, the second for
1316
+ * `stdout`, and the third for `stderr`. A fourth element can be used to
1317
+ * specify the `stdio` behavior beyond the standard streams. See
1318
+ * {@link ChildProcess.stdio} for more information.
1319
+ *
1320
+ * @default 'pipe'
1321
+ */
1295
1322
  stdio?: StdioOptions | undefined;
1296
1323
  killSignal?: NodeJS.Signals | number | undefined;
1297
1324
  maxBuffer?: number | undefined;