Files
bigwo/dev-assistant-mcp/dist/tools/autoFix.d.ts

28 lines
680 B
TypeScript
Raw Normal View History

2026-03-12 12:47:56 +08:00
export declare const autoFixTool: {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {
project_path: {
type: string;
description: string;
};
files: {
type: string;
description: string;
};
tools: {
type: string;
description: string;
};
};
required: string[];
};
};
export declare function executeAutoFix(args: {
project_path: string;
files?: string;
tools?: string;
}): Promise<string>;
//# sourceMappingURL=autoFix.d.ts.map