UNPKG

ngperf-audit

Version:

A comprehensive Angular performance analyzer that identifies performance bottlenecks, memory leaks, and optimization opportunities in Angular applications

11 lines 671 B
#!/usr/bin/env node /** * Main entry point for ngperf package * Exports the main classes and functions for programmatic usage */ export { PerformanceAnalyzer, PerformanceAnalyzerCLI } from './ngperf/performance-analyzer'; export { quickStartDemo } from './quick-start'; export { LicenseChecker } from './license-checker'; export type { AttributionInfo } from './license-checker'; export type { ComponentAnalysis, ChangeDetectionProblem, TemplatePerformanceIssue, SubscriptionIssue, BundleOptimization, OptimizationRecommendation, CodeLocation, ComponentInfo, ComponentMetadata, ProjectSummary } from './ngperf/performance-analyzer'; //# sourceMappingURL=index.d.ts.map