Update code
This commit is contained in:
34
dev-assistant-mcp/dist/tools/workflow.d.ts
vendored
Normal file
34
dev-assistant-mcp/dist/tools/workflow.d.ts
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
export declare const workflowTool: {
|
||||
name: string;
|
||||
description: string;
|
||||
inputSchema: {
|
||||
type: "object";
|
||||
properties: {
|
||||
project_path: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
preset: {
|
||||
type: string;
|
||||
description: string;
|
||||
enum: string[];
|
||||
};
|
||||
steps: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
stop_on_error: {
|
||||
type: string;
|
||||
description: string;
|
||||
};
|
||||
};
|
||||
required: string[];
|
||||
};
|
||||
};
|
||||
export declare function executeWorkflow(args: {
|
||||
project_path: string;
|
||||
preset?: string;
|
||||
steps?: string;
|
||||
stop_on_error?: boolean;
|
||||
}): Promise<string>;
|
||||
//# sourceMappingURL=workflow.d.ts.map
|
||||
Reference in New Issue
Block a user