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

33 lines
837 B
TypeScript

export declare const codeDebugTool: {
name: string;
description: string;
inputSchema: {
type: "object";
properties: {
code: {
type: string;
description: string;
};
error_message: {
type: string;
description: string;
};
language: {
type: string;
description: string;
};
expected_behavior: {
type: string;
description: string;
};
};
required: string[];
};
};
export declare function executeCodeDebug(args: {
code: string;
error_message: string;
language: string;
expected_behavior?: string;
}): Promise<string>;
//# sourceMappingURL=codeDebug.d.ts.map