1 | export type {
|
2 | StdinOption,
|
3 | StdinSyncOption,
|
4 | StdoutStderrOption,
|
5 | StdoutStderrSyncOption,
|
6 | } from './types/stdio/type.js';
|
7 | export type {Options, SyncOptions} from './types/arguments/options.js';
|
8 | export type {TemplateExpression} from './types/methods/template.js';
|
9 |
|
10 | export type {Result, SyncResult} from './types/return/result.js';
|
11 | export type {ResultPromise, Subprocess} from './types/subprocess/subprocess.js';
|
12 | export {ExecaError, ExecaSyncError} from './types/return/final-error.js';
|
13 |
|
14 | export {execa, type ExecaMethod} from './types/methods/main-async.js';
|
15 | export {execaSync, type ExecaSyncMethod} from './types/methods/main-sync.js';
|
16 | export {execaCommand, execaCommandSync, parseCommandString} from './types/methods/command.js';
|
17 | export {$, type ExecaScriptMethod, type ExecaScriptSyncMethod} from './types/methods/script.js';
|
18 | export {execaNode, type ExecaNodeMethod} from './types/methods/node.js';
|
19 |
|
20 | export {
|
21 | sendMessage,
|
22 | getOneMessage,
|
23 | getEachMessage,
|
24 | getCancelSignal,
|
25 | type Message,
|
26 | } from './types/ipc.js';
|
27 | export type {VerboseObject, SyncVerboseObject} from './types/verbose.js';
|