UNPKG

spec-workflow-mcp

Version:

MCP server for managing spec workflow (requirements, design, implementation)

10 lines 357 B
/** * Check workflow status */ import { WorkflowResult } from '../shared/mcpTypes.js'; export interface CheckOptions { path: string; onProgress?: (progress: number, total: number, message: string) => Promise<void>; } export declare function checkWorkflow(options: CheckOptions): Promise<WorkflowResult>; //# sourceMappingURL=checkWorkflow.d.ts.map