29 lines
710 B
TypeScript
29 lines
710 B
TypeScript
|
|
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
|