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