@jjdenhertog/ai-driven-development
Version:
AI-driven development workflow with learning capabilities for Claude
10 lines • 323 B
TypeScript
import { Task } from '../../types/tasks/Task';
type Options = {
taskId: string;
expectedStatuses: Task['status'][];
force?: boolean;
errorMessage?: string;
};
export declare function validateTaskForExecution(options: Options): Promise<Task>;
export {};
//# sourceMappingURL=validateTaskForExecution.d.ts.map