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

14 lines 580 B
import { BaseDTO } from './base.dto'; export declare class GraphEdgeDTO extends BaseDTO { source_id: string; target_id: string; source_business_key: string; target_business_key: string; edge_type: string; properties?: string; line?: number; col?: number; dynamic?: boolean; constructor(id: string, source_id: string, target_id: string, source_business_key: string, target_business_key: string, edge_type: string, options?: Partial<Pick<GraphEdgeDTO, 'properties' | 'line' | 'col' | 'dynamic'>>); } //# sourceMappingURL=GraphEdgeDTO.d.ts.map