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