@debugmcp/mcp-debugger
Version:
Run-time step-through debugging for LLM agents.
13 lines (12 loc) • 465 B
TypeScript
/**
* Concrete implementation of IProcessManager using Node.js child_process
*/
import { SpawnOptions } from 'child_process';
import { IProcessManager, IChildProcess } from '../interfaces/external-dependencies.js';
export declare class ProcessManagerImpl implements IProcessManager {
spawn(command: string, args?: string[], options?: SpawnOptions): IChildProcess;
exec(command: string): Promise<{
stdout: string;
stderr: string;
}>;
}