Update code
This commit is contained in:
28
dev-assistant-mcp/dist/tools/lintCheck.d.ts
vendored
Normal file
28
dev-assistant-mcp/dist/tools/lintCheck.d.ts
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
export declare const lintCheckTool: {
|
||||
name: string;
|
||||
description: string;
|
||||
inputSchema: {
|
||||
type: "object";
|
||||
properties: {
|
||||
project_path: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
fix: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
files: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
};
|
||||
required: string[];
|
||||
};
|
||||
};
|
||||
export declare function executeLintCheck(args: {
|
||||
project_path: string;
|
||||
fix?: boolean;
|
||||
files?: string;
|
||||
}): Promise<string>;
|
||||
//# sourceMappingURL=lintCheck.d.ts.map
|
||||
Reference in New Issue
Block a user