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