Update code
This commit is contained in:
28
dev-assistant-mcp/dist/tools/autoFix.d.ts
vendored
Normal file
28
dev-assistant-mcp/dist/tools/autoFix.d.ts
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
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
|
||||
Reference in New Issue
Block a user