28 lines
683 B
TypeScript
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
|