/** * @angular-modernizer/plugin-angular - Architecture Analysis Engine * * Core system for architectural awareness and cross-file analysis. * Enables detection of layer violations, circular dependencies, and architectural anti-patterns. * * Key Components: * - DependencyGraph: Tracks all imports and dependencies across the codebase * - ArchitectureAnalyzer: Analyzes architectural boundaries and violations * - MigrationPlanner: Suggests refactoring strategies for architectural fixes * - BoundaryRules: Defines and enforces architectural layer boundaries */ export * from './dependency-graph.js'; export * from './architecture-analyzer.js'; export * from './boundary-rules.js'; export * from './types.js'; //# sourceMappingURL=index.d.ts.map