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

33 lines
824 B
TypeScript

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