UNPKG

hikma-engine

Version:

Code Knowledge Graph Indexer - A sophisticated TypeScript-based indexer that transforms Git repositories into multi-dimensional knowledge stores for AI agents

13 lines 468 B
import { BaseDTO } from './base.dto'; export type PhaseStatus = 'pending' | 'running' | 'completed' | 'failed'; export declare class PhaseStatusDTO extends BaseDTO { repo_id: string; phase_name: string; status: PhaseStatus; started_at?: string; completed_at?: string; commit_hash?: string; stats?: string; constructor(id: string, repo_id: string, phase_name: string, status?: PhaseStatus); } //# sourceMappingURL=PhaseStatusDTO.d.ts.map