UNPKG

@every-env/cli

Version:

Multi-agent orchestrator for AI-powered development workflows

17 lines 557 B
export declare function execCommand(command: string, args?: string[], options?: { interactive?: boolean; cwd?: string; env?: NodeJS.ProcessEnv; }): Promise<void>; /** * Execute a command and capture its stdout/stderr without spawning an interactive shell. * Returns stdout as a string. Throws on non-zero exit status. */ export declare function execCapture(command: string, args?: string[], options?: { cwd?: string; env?: NodeJS.ProcessEnv; }): Promise<{ stdout: string; stderr: string; }>; //# sourceMappingURL=exec.d.ts.map