woaru
Version:
Universal Project Setup Autopilot - Analyze and automatically configure development tools for ANY programming language
17 lines • 601 B
TypeScript
import { SetupRecommendation, SetupOptions } from '../types';
export declare class ActionManager {
private actions;
constructor();
private registerAction;
executeRecommendations(projectPath: string, recommendations: SetupRecommendation[], options: SetupOptions): Promise<{
success: boolean;
results: Array<{
tool: string;
success: boolean;
error?: string;
}>;
}>;
rollbackTool(projectPath: string, toolName: string): Promise<boolean>;
getAvailableActions(): string[];
}
//# sourceMappingURL=ActionManager.d.ts.map