@teams-max/mwsp 1.0.0

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.
Files changed (67) hide show
  1. package/README.md +3 -0
  2. package/bin/mwsp.js +36 -0
  3. package/es/cli/build.d.ts +2 -0
  4. package/es/cli/build.js +82 -0
  5. package/es/cli/cli.d.ts +1 -0
  6. package/es/cli/cli.js +42 -0
  7. package/es/cli/dev.d.ts +1 -0
  8. package/es/cli/dev.js +44 -0
  9. package/es/cli/start.d.ts +2 -0
  10. package/es/cli/start.js +46 -0
  11. package/es/cli/update.d.ts +2 -0
  12. package/es/cli/update.js +38 -0
  13. package/es/index.d.ts +1 -0
  14. package/es/index.js +1 -0
  15. package/es/internal/buildNotify.d.ts +10 -0
  16. package/es/internal/buildNotify.js +123 -0
  17. package/es/internal/cross-spawn/LICENSE +21 -0
  18. package/es/internal/cross-spawn/index.d.ts +39 -0
  19. package/es/internal/cross-spawn/index.js +512 -0
  20. package/es/internal/cross-spawn/package.json +1 -0
  21. package/es/internal/datetimeFormat.d.ts +9 -0
  22. package/es/internal/datetimeFormat.js +96 -0
  23. package/es/internal/exec.d.ts +1 -0
  24. package/es/internal/exec.js +27 -0
  25. package/es/internal/execa/LICENSE +9 -0
  26. package/es/internal/execa/index.d.ts +534 -0
  27. package/es/internal/execa/index.js +1870 -0
  28. package/es/internal/execa/package.json +1 -0
  29. package/es/internal/merge-stream/LICENSE +21 -0
  30. package/es/internal/merge-stream/index.d.ts +19 -0
  31. package/es/internal/merge-stream/index.js +68 -0
  32. package/es/internal/merge-stream/package.json +1 -0
  33. package/es/internal/utils.d.ts +14 -0
  34. package/es/internal/utils.js +90 -0
  35. package/lib/cli/build.d.ts +2 -0
  36. package/lib/cli/build.js +84 -0
  37. package/lib/cli/cli.d.ts +1 -0
  38. package/lib/cli/cli.js +60 -0
  39. package/lib/cli/dev.d.ts +1 -0
  40. package/lib/cli/dev.js +62 -0
  41. package/lib/cli/start.d.ts +2 -0
  42. package/lib/cli/start.js +59 -0
  43. package/lib/cli/update.d.ts +2 -0
  44. package/lib/cli/update.js +50 -0
  45. package/lib/index.d.ts +1 -0
  46. package/lib/index.js +29 -0
  47. package/lib/internal/buildNotify.d.ts +10 -0
  48. package/lib/internal/buildNotify.js +112 -0
  49. package/lib/internal/cross-spawn/LICENSE +21 -0
  50. package/lib/internal/cross-spawn/index.d.ts +39 -0
  51. package/lib/internal/cross-spawn/index.js +465 -0
  52. package/lib/internal/cross-spawn/package.json +1 -0
  53. package/lib/internal/datetimeFormat.d.ts +9 -0
  54. package/lib/internal/datetimeFormat.js +106 -0
  55. package/lib/internal/exec.d.ts +1 -0
  56. package/lib/internal/exec.js +60 -0
  57. package/lib/internal/execa/LICENSE +9 -0
  58. package/lib/internal/execa/index.d.ts +534 -0
  59. package/lib/internal/execa/index.js +1579 -0
  60. package/lib/internal/execa/package.json +1 -0
  61. package/lib/internal/merge-stream/LICENSE +21 -0
  62. package/lib/internal/merge-stream/index.d.ts +19 -0
  63. package/lib/internal/merge-stream/index.js +62 -0
  64. package/lib/internal/merge-stream/package.json +1 -0
  65. package/lib/internal/utils.d.ts +14 -0
  66. package/lib/internal/utils.js +100 -0
  67. package/package.json +44 -0
@@ -0,0 +1,534 @@
1
+ /// <reference types="node"/>
2
+ import { ChildProcess } from 'child_process';
3
+ import { Stream, Readable as ReadableStream } from 'stream';
4
+
5
+ declare namespace execa {
6
+ type StdioOption = 'pipe' | 'ipc' | 'ignore' | 'inherit' | Stream | number | undefined;
7
+
8
+ interface CommonOptions<EncodingType> {
9
+ /**
10
+ Kill the spawned process when the parent process exits unless either:
11
+ - the spawned process is [`detached`](https://nodejs.org/api/child_process.html#child_process_options_detached)
12
+ - the parent process is terminated abruptly, for example, with `SIGKILL` as opposed to `SIGTERM` or a normal exit
13
+
14
+ @default true
15
+ */
16
+ readonly cleanup?: boolean;
17
+
18
+ /**
19
+ Prefer locally installed binaries when looking for a binary to execute.
20
+
21
+ If you `$ npm install foo`, you can then `execa('foo')`.
22
+
23
+ @default false
24
+ */
25
+ readonly preferLocal?: boolean;
26
+
27
+ /**
28
+ Preferred path to find locally installed binaries in (use with `preferLocal`).
29
+
30
+ @default process.cwd()
31
+ */
32
+ readonly localDir?: string;
33
+
34
+ /**
35
+ Path to the Node.js executable to use in child processes.
36
+
37
+ This can be either an absolute path or a path relative to the `cwd` option.
38
+
39
+ Requires `preferLocal` to be `true`.
40
+
41
+ For example, this can be used together with [`get-node`](https://github.com/ehmicky/get-node) to run a specific Node.js version in a child process.
42
+
43
+ @default process.execPath
44
+ */
45
+ readonly execPath?: string;
46
+
47
+ /**
48
+ Buffer the output from the spawned process. When set to `false`, you must read the output of `stdout` and `stderr` (or `all` if the `all` option is `true`). Otherwise the returned promise will not be resolved/rejected.
49
+
50
+ If the spawned process fails, `error.stdout`, `error.stderr`, and `error.all` will contain the buffered data.
51
+
52
+ @default true
53
+ */
54
+ readonly buffer?: boolean;
55
+
56
+ /**
57
+ Same options as [`stdio`](https://nodejs.org/dist/latest-v6.x/docs/api/child_process.html#child_process_options_stdio).
58
+
59
+ @default 'pipe'
60
+ */
61
+ readonly stdin?: StdioOption;
62
+
63
+ /**
64
+ Same options as [`stdio`](https://nodejs.org/dist/latest-v6.x/docs/api/child_process.html#child_process_options_stdio).
65
+
66
+ @default 'pipe'
67
+ */
68
+ readonly stdout?: StdioOption;
69
+
70
+ /**
71
+ Same options as [`stdio`](https://nodejs.org/dist/latest-v6.x/docs/api/child_process.html#child_process_options_stdio).
72
+
73
+ @default 'pipe'
74
+ */
75
+ readonly stderr?: StdioOption;
76
+
77
+ /**
78
+ Setting this to `false` resolves the promise with the error instead of rejecting it.
79
+
80
+ @default true
81
+ */
82
+ readonly reject?: boolean;
83
+
84
+ /**
85
+ Add an `.all` property on the promise and the resolved value. The property contains the output of the process with `stdout` and `stderr` interleaved.
86
+
87
+ @default false
88
+ */
89
+ readonly all?: boolean;
90
+
91
+ /**
92
+ Strip the final [newline character](https://en.wikipedia.org/wiki/Newline) from the output.
93
+
94
+ @default true
95
+ */
96
+ readonly stripFinalNewline?: boolean;
97
+
98
+ /**
99
+ Set to `false` if you don't want to extend the environment variables when providing the `env` property.
100
+
101
+ @default true
102
+ */
103
+ readonly extendEnv?: boolean;
104
+
105
+ /**
106
+ Current working directory of the child process.
107
+
108
+ @default process.cwd()
109
+ */
110
+ readonly cwd?: string;
111
+
112
+ /**
113
+ Environment key-value pairs. Extends automatically from `process.env`. Set `extendEnv` to `false` if you don't want this.
114
+
115
+ @default process.env
116
+ */
117
+ readonly env?: NodeJS.ProcessEnv;
118
+
119
+ /**
120
+ Explicitly set the value of `argv[0]` sent to the child process. This will be set to `command` or `file` if not specified.
121
+ */
122
+ readonly argv0?: string;
123
+
124
+ /**
125
+ Child's [stdio](https://nodejs.org/api/child_process.html#child_process_options_stdio) configuration.
126
+
127
+ @default 'pipe'
128
+ */
129
+ readonly stdio?: 'pipe' | 'ignore' | 'inherit' | readonly StdioOption[];
130
+
131
+ /**
132
+ Specify the kind of serialization used for sending messages between processes when using the `stdio: 'ipc'` option or `execa.node()`:
133
+ - `json`: Uses `JSON.stringify()` and `JSON.parse()`.
134
+ - `advanced`: Uses [`v8.serialize()`](https://nodejs.org/api/v8.html#v8_v8_serialize_value)
135
+
136
+ Requires Node.js `13.2.0` or later.
137
+
138
+ [More info.](https://nodejs.org/api/child_process.html#child_process_advanced_serialization)
139
+
140
+ @default 'json'
141
+ */
142
+ readonly serialization?: 'json' | 'advanced';
143
+
144
+ /**
145
+ Prepare child to run independently of its parent process. Specific behavior [depends on the platform](https://nodejs.org/api/child_process.html#child_process_options_detached).
146
+
147
+ @default false
148
+ */
149
+ readonly detached?: boolean;
150
+
151
+ /**
152
+ Sets the user identity of the process.
153
+ */
154
+ readonly uid?: number;
155
+
156
+ /**
157
+ Sets the group identity of the process.
158
+ */
159
+ readonly gid?: number;
160
+
161
+ /**
162
+ If `true`, runs `command` inside of a shell. Uses `/bin/sh` on UNIX and `cmd.exe` on Windows. A different shell can be specified as a string. The shell should understand the `-c` switch on UNIX or `/d /s /c` on Windows.
163
+
164
+ We recommend against using this option since it is:
165
+ - not cross-platform, encouraging shell-specific syntax.
166
+ - slower, because of the additional shell interpretation.
167
+ - unsafe, potentially allowing command injection.
168
+
169
+ @default false
170
+ */
171
+ readonly shell?: boolean | string;
172
+
173
+ /**
174
+ Specify the character encoding used to decode the `stdout` and `stderr` output. If set to `null`, then `stdout` and `stderr` will be a `Buffer` instead of a string.
175
+
176
+ @default 'utf8'
177
+ */
178
+ readonly encoding?: EncodingType;
179
+
180
+ /**
181
+ If `timeout` is greater than `0`, the parent will send the signal identified by the `killSignal` property (the default is `SIGTERM`) if the child runs longer than `timeout` milliseconds.
182
+
183
+ @default 0
184
+ */
185
+ readonly timeout?: number;
186
+
187
+ /**
188
+ Largest amount of data in bytes allowed on `stdout` or `stderr`. Default: 100 MB.
189
+
190
+ @default 100_000_000
191
+ */
192
+ readonly maxBuffer?: number;
193
+
194
+ /**
195
+ Signal value to be used when the spawned process will be killed.
196
+
197
+ @default 'SIGTERM'
198
+ */
199
+ readonly killSignal?: string | number;
200
+
201
+ /**
202
+ If `true`, no quoting or escaping of arguments is done on Windows. Ignored on other platforms. This is set to `true` automatically when the `shell` option is `true`.
203
+
204
+ @default false
205
+ */
206
+ readonly windowsVerbatimArguments?: boolean;
207
+
208
+ /**
209
+ On Windows, do not create a new console window. Please note this also prevents `CTRL-C` [from working](https://github.com/nodejs/node/issues/29837) on Windows.
210
+
211
+ @default true
212
+ */
213
+ readonly windowsHide?: boolean;
214
+ }
215
+
216
+ interface Options<EncodingType = string> extends CommonOptions<EncodingType> {
217
+ /**
218
+ Write some input to the `stdin` of your binary.
219
+ */
220
+ readonly input?: string | Buffer | ReadableStream;
221
+ }
222
+
223
+ interface SyncOptions<EncodingType = string> extends CommonOptions<EncodingType> {
224
+ /**
225
+ Write some input to the `stdin` of your binary.
226
+ */
227
+ readonly input?: string | Buffer;
228
+ }
229
+
230
+ interface NodeOptions<EncodingType = string> extends Options<EncodingType> {
231
+ /**
232
+ The Node.js executable to use.
233
+
234
+ @default process.execPath
235
+ */
236
+ readonly nodePath?: string;
237
+
238
+ /**
239
+ List of [CLI options](https://nodejs.org/api/cli.html#cli_options) passed to the Node.js executable.
240
+
241
+ @default process.execArgv
242
+ */
243
+ readonly nodeOptions?: string[];
244
+ }
245
+
246
+ interface ExecaReturnBase<StdoutStderrType> {
247
+ /**
248
+ The file and arguments that were run.
249
+ */
250
+ command: string;
251
+
252
+ /**
253
+ The numeric exit code of the process that was run.
254
+ */
255
+ exitCode: number;
256
+
257
+ /**
258
+ The output of the process on stdout.
259
+ */
260
+ stdout: StdoutStderrType;
261
+
262
+ /**
263
+ The output of the process on stderr.
264
+ */
265
+ stderr: StdoutStderrType;
266
+
267
+ /**
268
+ Whether the process failed to run.
269
+ */
270
+ failed: boolean;
271
+
272
+ /**
273
+ Whether the process timed out.
274
+ */
275
+ timedOut: boolean;
276
+
277
+ /**
278
+ Whether the process was killed.
279
+ */
280
+ killed: boolean;
281
+
282
+ /**
283
+ The name of the signal that was used to terminate the process. For example, `SIGFPE`.
284
+
285
+ If a signal terminated the process, this property is defined and included in the error message. Otherwise it is `undefined`.
286
+ */
287
+ signal?: string;
288
+
289
+ /**
290
+ A human-friendly description of the signal that was used to terminate the process. For example, `Floating point arithmetic error`.
291
+
292
+ If a signal terminated the process, this property is defined and included in the error message. Otherwise it is `undefined`. It is also `undefined` when the signal is very uncommon which should seldomly happen.
293
+ */
294
+ signalDescription?: string;
295
+ }
296
+
297
+ interface ExecaSyncReturnValue<StdoutErrorType = string>
298
+ extends ExecaReturnBase<StdoutErrorType> {}
299
+
300
+ /**
301
+ Result of a child process execution. On success this is a plain object. On failure this is also an `Error` instance.
302
+
303
+ The child process fails when:
304
+ - its exit code is not `0`
305
+ - it was killed with a signal
306
+ - timing out
307
+ - being canceled
308
+ - there's not enough memory or there are already too many child processes
309
+ */
310
+ interface ExecaReturnValue<StdoutErrorType = string>
311
+ extends ExecaSyncReturnValue<StdoutErrorType> {
312
+ /**
313
+ The output of the process with `stdout` and `stderr` interleaved.
314
+
315
+ This is `undefined` if either:
316
+ - the `all` option is `false` (default value)
317
+ - `execa.sync()` was used
318
+ */
319
+ all?: StdoutErrorType;
320
+
321
+ /**
322
+ Whether the process was canceled.
323
+ */
324
+ isCanceled: boolean;
325
+ }
326
+
327
+ interface ExecaSyncError<StdoutErrorType = string>
328
+ extends Error,
329
+ ExecaReturnBase<StdoutErrorType> {
330
+ /**
331
+ Error message when the child process failed to run. In addition to the underlying error message, it also contains some information related to why the child process errored.
332
+
333
+ The child process stderr then stdout are appended to the end, separated with newlines and not interleaved.
334
+ */
335
+ message: string;
336
+
337
+ /**
338
+ This is the same as the `message` property except it does not include the child process stdout/stderr.
339
+ */
340
+ shortMessage: string;
341
+
342
+ /**
343
+ Original error message. This is the same as the `message` property except it includes neither the child process stdout/stderr nor some additional information added by Execa.
344
+
345
+ This is `undefined` unless the child process exited due to an `error` event or a timeout.
346
+ */
347
+ originalMessage?: string;
348
+ }
349
+
350
+ interface ExecaError<StdoutErrorType = string> extends ExecaSyncError<StdoutErrorType> {
351
+ /**
352
+ The output of the process with `stdout` and `stderr` interleaved.
353
+
354
+ This is `undefined` if either:
355
+ - the `all` option is `false` (default value)
356
+ - `execa.sync()` was used
357
+ */
358
+ all?: StdoutErrorType;
359
+
360
+ /**
361
+ Whether the process was canceled.
362
+ */
363
+ isCanceled: boolean;
364
+ }
365
+
366
+ interface KillOptions {
367
+ /**
368
+ Milliseconds to wait for the child process to terminate before sending `SIGKILL`.
369
+
370
+ Can be disabled with `false`.
371
+
372
+ @default 5000
373
+ */
374
+ forceKillAfterTimeout?: number | false;
375
+ }
376
+
377
+ interface ExecaChildPromise<StdoutErrorType> {
378
+ catch<ResultType = never>(
379
+ onRejected?: (reason: ExecaError<StdoutErrorType>) => ResultType | PromiseLike<ResultType>,
380
+ ): Promise<ExecaReturnValue<StdoutErrorType> | ResultType>;
381
+
382
+ /**
383
+ Same as the original [`child_process#kill()`](https://nodejs.org/api/child_process.html#child_process_subprocess_kill_signal), except if `signal` is `SIGTERM` (the default value) and the child process is not terminated after 5 seconds, force it by sending `SIGKILL`.
384
+ */
385
+ kill(signal?: string, options?: execa.KillOptions): void;
386
+
387
+ /**
388
+ Similar to [`childProcess.kill()`](https://nodejs.org/api/child_process.html#child_process_subprocess_kill_signal). This is preferred when cancelling the child process execution as the error is more descriptive and [`childProcessResult.isCanceled`](#iscanceled) is set to `true`.
389
+ */
390
+ cancel(): void;
391
+
392
+ /**
393
+ Stream combining/interleaving [`stdout`](https://nodejs.org/api/child_process.html#child_process_subprocess_stdout) and [`stderr`](https://nodejs.org/api/child_process.html#child_process_subprocess_stderr).
394
+
395
+ This is `undefined` if either:
396
+ - the `all` option is `false` (the default value)
397
+ - both `stdout` and `stderr` options are set to [`'inherit'`, `'ipc'`, `Stream` or `integer`](https://nodejs.org/dist/latest-v6.x/docs/api/child_process.html#child_process_options_stdio)
398
+ */
399
+ all?: ReadableStream;
400
+ }
401
+
402
+ type ExecaChildProcess<StdoutErrorType = string> = ChildProcess &
403
+ ExecaChildPromise<StdoutErrorType> &
404
+ Promise<ExecaReturnValue<StdoutErrorType>>;
405
+ }
406
+
407
+ declare const execa: {
408
+ /**
409
+ Execute a file.
410
+
411
+ Think of this as a mix of `child_process.execFile` and `child_process.spawn`.
412
+
413
+ @param file - The program/script to execute.
414
+ @param arguments - Arguments to pass to `file` on execution.
415
+ @returns A [`child_process` instance](https://nodejs.org/api/child_process.html#child_process_class_childprocess), which is enhanced to also be a `Promise` for a result `Object` with `stdout` and `stderr` properties.
416
+
417
+ @example
418
+ ```
419
+ import execa from '@umijs/deps/types/execa/execa';
420
+
421
+ (async () => {
422
+ const {stdout} = await execa('echo', ['unicorns']);
423
+ console.log(stdout);
424
+ //=> 'unicorns'
425
+
426
+ // Cancelling a spawned process
427
+ const subprocess = execa('node');
428
+ setTimeout(() => { spawned.cancel() }, 1000);
429
+ try {
430
+ await subprocess;
431
+ } catch (error) {
432
+ console.log(subprocess.killed); // true
433
+ console.log(error.isCanceled); // true
434
+ }
435
+ })();
436
+
437
+ // Pipe the child process stdout to the current stdout
438
+ execa('echo', ['unicorns']).stdout.pipe(process.stdout);
439
+ ```
440
+ */
441
+ (file: string, arguments?: readonly string[], options?: execa.Options): execa.ExecaChildProcess;
442
+ (
443
+ file: string,
444
+ arguments?: readonly string[],
445
+ options?: execa.Options<null>,
446
+ ): execa.ExecaChildProcess<Buffer>;
447
+ (file: string, options?: execa.Options): execa.ExecaChildProcess;
448
+ (file: string, options?: execa.Options<null>): execa.ExecaChildProcess<Buffer>;
449
+
450
+ /**
451
+ Execute a file synchronously.
452
+
453
+ This method throws an `Error` if the command fails.
454
+
455
+ @param file - The program/script to execute.
456
+ @param arguments - Arguments to pass to `file` on execution.
457
+ @returns A result `Object` with `stdout` and `stderr` properties.
458
+ */
459
+ sync(
460
+ file: string,
461
+ arguments?: readonly string[],
462
+ options?: execa.SyncOptions,
463
+ ): execa.ExecaSyncReturnValue;
464
+ sync(
465
+ file: string,
466
+ arguments?: readonly string[],
467
+ options?: execa.SyncOptions<null>,
468
+ ): execa.ExecaSyncReturnValue<Buffer>;
469
+ sync(file: string, options?: execa.SyncOptions): execa.ExecaSyncReturnValue;
470
+ sync(file: string, options?: execa.SyncOptions<null>): execa.ExecaSyncReturnValue<Buffer>;
471
+
472
+ /**
473
+ Same as `execa()` except both file and arguments are specified in a single `command` string. For example, `execa('echo', ['unicorns'])` is the same as `execa.command('echo unicorns')`.
474
+
475
+ If the file or an argument contains spaces, they must be escaped with backslashes. This matters especially if `command` is not a constant but a variable, for example with `__dirname` or `process.cwd()`. Except for spaces, no escaping/quoting is needed.
476
+
477
+ The `shell` option must be used if the `command` uses shell-specific features, as opposed to being a simple `file` followed by its `arguments`.
478
+
479
+ @param command - The program/script to execute and its arguments.
480
+ @returns A [`child_process` instance](https://nodejs.org/api/child_process.html#child_process_class_childprocess), which is enhanced to also be a `Promise` for a result `Object` with `stdout` and `stderr` properties.
481
+
482
+ @example
483
+ ```
484
+ import execa from '@umijs/deps/types/execa/execa';
485
+
486
+ (async () => {
487
+ const {stdout} = await execa.command('echo unicorns');
488
+ console.log(stdout);
489
+ //=> 'unicorns'
490
+ })();
491
+ ```
492
+ */
493
+ command(command: string, options?: execa.Options): execa.ExecaChildProcess;
494
+ command(command: string, options?: execa.Options<null>): execa.ExecaChildProcess<Buffer>;
495
+
496
+ /**
497
+ Same as `execa.command()` but synchronous.
498
+
499
+ @param command - The program/script to execute and its arguments.
500
+ @returns A result `Object` with `stdout` and `stderr` properties.
501
+ */
502
+ commandSync(command: string, options?: execa.SyncOptions): execa.ExecaSyncReturnValue;
503
+ commandSync(
504
+ command: string,
505
+ options?: execa.SyncOptions<null>,
506
+ ): execa.ExecaSyncReturnValue<Buffer>;
507
+
508
+ /**
509
+ Execute a Node.js script as a child process.
510
+
511
+ Same as `execa('node', [scriptPath, ...arguments], options)` except (like [`child_process#fork()`](https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options)):
512
+ - the current Node version and options are used. This can be overridden using the `nodePath` and `nodeArguments` options.
513
+ - the `shell` option cannot be used
514
+ - an extra channel [`ipc`](https://nodejs.org/api/child_process.html#child_process_options_stdio) is passed to [`stdio`](#stdio)
515
+
516
+ @param scriptPath - Node.js script to execute.
517
+ @param arguments - Arguments to pass to `scriptPath` on execution.
518
+ @returns A [`child_process` instance](https://nodejs.org/api/child_process.html#child_process_class_childprocess), which is enhanced to also be a `Promise` for a result `Object` with `stdout` and `stderr` properties.
519
+ */
520
+ node(
521
+ scriptPath: string,
522
+ arguments?: readonly string[],
523
+ options?: execa.NodeOptions,
524
+ ): execa.ExecaChildProcess;
525
+ node(
526
+ scriptPath: string,
527
+ arguments?: readonly string[],
528
+ options?: execa.Options<null>,
529
+ ): execa.ExecaChildProcess<Buffer>;
530
+ node(scriptPath: string, options?: execa.Options): execa.ExecaChildProcess;
531
+ node(scriptPath: string, options?: execa.Options<null>): execa.ExecaChildProcess<Buffer>;
532
+ };
533
+
534
+ export = execa;