34 lines
857 B
TypeScript
34 lines
857 B
TypeScript
|
|
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
|