Update code
This commit is contained in:
33
dev-assistant-mcp/dist/tools/codeDebug.d.ts
vendored
Normal file
33
dev-assistant-mcp/dist/tools/codeDebug.d.ts
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
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
|
||||
Reference in New Issue
Block a user