@fission-ai/openspec
Version:
AI-native system for spec-driven development
8 lines • 384 B
TypeScript
export interface TaskProgress {
total: number;
completed: number;
}
export declare function countTasksFromContent(content: string): TaskProgress;
export declare function getTaskProgressForChange(changesDir: string, changeName: string): Promise<TaskProgress>;
export declare function formatTaskStatus(progress: TaskProgress): string;
//# sourceMappingURL=task-progress.d.ts.map