@xec-sh/core
Version:
Universal shell execution engine
11 lines (10 loc) • 328 B
TypeScript
import type { Command } from './command.js';
export interface ExecutionConfig extends Partial<Command> {
defaultEnv?: Record<string, string>;
defaultCwd?: string;
defaultTimeout?: number;
defaultShell?: string | boolean;
throwOnNonZeroExit?: boolean;
encoding?: BufferEncoding;
maxBuffer?: number;
}