relaycode
Version:
A developer assistant that automates applying code changes from LLMs.
10 lines (8 loc) • 321 B
text/typescript
type ExecutionResult = {
exitCode: number;
stdout: string;
stderr: string;
};
declare const executeShellCommand: (command: string, cwd?: string) => Promise<ExecutionResult>;
declare const getErrorCount: (linterCommand: string, cwd?: string) => Promise<number>;
export { executeShellCommand, getErrorCount };