Files
bigwo/dev-assistant-mcp/dist/tools/lintCheck.d.ts
2026-03-12 12:47:56 +08:00

28 lines
683 B
TypeScript

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