@types/node 14.18.46 → 14.18.48
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 v14.18/README.md +1 -1
- node v14.18/child_process.d.ts +36 -0
- node v14.18/crypto.d.ts +1 -1
- node v14.18/package.json +2 -2
- node v14.18/ts4.8/child_process.d.ts +36 -0
- node v14.18/ts4.8/crypto.d.ts +1 -1
node v14.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/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Thu, 25 May 2023 20:34:31 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v14.18/child_process.d.ts
CHANGED
|
@@ -154,6 +154,15 @@ declare module 'child_process' {
|
|
|
154
154
|
|
|
155
155
|
interface CommonSpawnOptions extends CommonOptions, MessagingOptions {
|
|
156
156
|
argv0?: string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
159
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
160
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
161
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
162
|
+
* {@link ChildProcess.stdio} for more information.
|
|
163
|
+
*
|
|
164
|
+
* @default 'pipe'
|
|
165
|
+
*/
|
|
157
166
|
stdio?: StdioOptions | undefined;
|
|
158
167
|
shell?: boolean | string | undefined;
|
|
159
168
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -434,6 +443,15 @@ declare module 'child_process' {
|
|
|
434
443
|
execPath?: string | undefined;
|
|
435
444
|
execArgv?: string[] | undefined;
|
|
436
445
|
silent?: boolean | undefined;
|
|
446
|
+
/**
|
|
447
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
448
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
449
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
450
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
451
|
+
* {@link ChildProcess.stdio} for more information.
|
|
452
|
+
*
|
|
453
|
+
* @default 'pipe'
|
|
454
|
+
*/
|
|
437
455
|
stdio?: StdioOptions | undefined;
|
|
438
456
|
detached?: boolean | undefined;
|
|
439
457
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -472,6 +490,15 @@ declare module 'child_process' {
|
|
|
472
490
|
|
|
473
491
|
interface ExecSyncOptions extends CommonOptions {
|
|
474
492
|
input?: string | Uint8Array | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
495
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
496
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
497
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
498
|
+
* {@link ChildProcess.stdio} for more information.
|
|
499
|
+
*
|
|
500
|
+
* @default 'pipe'
|
|
501
|
+
*/
|
|
475
502
|
stdio?: StdioOptions | undefined;
|
|
476
503
|
shell?: string | undefined;
|
|
477
504
|
killSignal?: NodeJS.Signals | number | undefined;
|
|
@@ -491,6 +518,15 @@ declare module 'child_process' {
|
|
|
491
518
|
|
|
492
519
|
interface ExecFileSyncOptions extends CommonOptions {
|
|
493
520
|
input?: string | NodeJS.ArrayBufferView | undefined;
|
|
521
|
+
/**
|
|
522
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
523
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
524
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
525
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
526
|
+
* {@link ChildProcess.stdio} for more information.
|
|
527
|
+
*
|
|
528
|
+
* @default 'pipe'
|
|
529
|
+
*/
|
|
494
530
|
stdio?: StdioOptions | undefined;
|
|
495
531
|
killSignal?: NodeJS.Signals | number | undefined;
|
|
496
532
|
maxBuffer?: number | undefined;
|
node v14.18/crypto.d.ts
CHANGED
node v14.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.18.
|
|
3
|
+
"version": "14.18.48",
|
|
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": "
|
|
230
|
+
"typesPublisherContentHash": "bc4e751e9789bc5cc9b8f725d809e83574a8cef21a5d14cc2636155a5d76bee6",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|
|
@@ -154,6 +154,15 @@ declare module 'child_process' {
|
|
|
154
154
|
|
|
155
155
|
interface CommonSpawnOptions extends CommonOptions, MessagingOptions {
|
|
156
156
|
argv0?: string | undefined;
|
|
157
|
+
/**
|
|
158
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
159
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
160
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
161
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
162
|
+
* {@link ChildProcess.stdio} for more information.
|
|
163
|
+
*
|
|
164
|
+
* @default 'pipe'
|
|
165
|
+
*/
|
|
157
166
|
stdio?: StdioOptions | undefined;
|
|
158
167
|
shell?: boolean | string | undefined;
|
|
159
168
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -434,6 +443,15 @@ declare module 'child_process' {
|
|
|
434
443
|
execPath?: string | undefined;
|
|
435
444
|
execArgv?: string[] | undefined;
|
|
436
445
|
silent?: boolean | undefined;
|
|
446
|
+
/**
|
|
447
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
448
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
449
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
450
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
451
|
+
* {@link ChildProcess.stdio} for more information.
|
|
452
|
+
*
|
|
453
|
+
* @default 'pipe'
|
|
454
|
+
*/
|
|
437
455
|
stdio?: StdioOptions | undefined;
|
|
438
456
|
detached?: boolean | undefined;
|
|
439
457
|
windowsVerbatimArguments?: boolean | undefined;
|
|
@@ -472,6 +490,15 @@ declare module 'child_process' {
|
|
|
472
490
|
|
|
473
491
|
interface ExecSyncOptions extends CommonOptions {
|
|
474
492
|
input?: string | Uint8Array | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
495
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
496
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
497
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
498
|
+
* {@link ChildProcess.stdio} for more information.
|
|
499
|
+
*
|
|
500
|
+
* @default 'pipe'
|
|
501
|
+
*/
|
|
475
502
|
stdio?: StdioOptions | undefined;
|
|
476
503
|
shell?: string | undefined;
|
|
477
504
|
killSignal?: NodeJS.Signals | number | undefined;
|
|
@@ -491,6 +518,15 @@ declare module 'child_process' {
|
|
|
491
518
|
|
|
492
519
|
interface ExecFileSyncOptions extends CommonOptions {
|
|
493
520
|
input?: string | NodeJS.ArrayBufferView | undefined;
|
|
521
|
+
/**
|
|
522
|
+
* Can be set to 'pipe', 'inherit', 'overlapped', or 'ignore', or an array of these strings.
|
|
523
|
+
* If passed as an array, the first element is used for `stdin`, the second for
|
|
524
|
+
* `stdout`, and the third for `stderr`. A fourth element can be used to
|
|
525
|
+
* specify the `stdio` behavior beyond the standard streams. See
|
|
526
|
+
* {@link ChildProcess.stdio} for more information.
|
|
527
|
+
*
|
|
528
|
+
* @default 'pipe'
|
|
529
|
+
*/
|
|
494
530
|
stdio?: StdioOptions | undefined;
|
|
495
531
|
killSignal?: NodeJS.Signals | number | undefined;
|
|
496
532
|
maxBuffer?: number | undefined;
|
node v14.18/ts4.8/crypto.d.ts
CHANGED