UNPKG

@paulohenriquevn/m2js

Version:

Transform TypeScript/JavaScript code into LLM-friendly Markdown summaries + Smart Dead Code Detection + Graph-Deep Diff Analysis. Extract exported functions, classes, and JSDoc comments for better AI context with 60%+ token reduction. Intelligent dead cod

10 lines (9 loc) 351 B
/** * Graph-Deep Diff Analyzer * Compare architectural states and detect problematic changes */ import { GraphDiffOptions, GraphDiffReport } from './graph-diff-types'; /** * Analyze architectural differences between two states */ export declare function analyzeGraphDiff(projectPath: string, options: GraphDiffOptions): Promise<GraphDiffReport>;