ngperf-audit
Version:
A comprehensive Angular performance analyzer that identifies performance bottlenecks, memory leaks, and optimization opportunities in Angular applications
20 lines • 831 B
TypeScript
/**
* CLI Entry Point for Angular Performance Analyzer
*/
declare const commands: {
project(projectPath?: string, outputPath?: string, format?: string): Promise<import("./performance-analyzer").ComponentAnalysis[] | {
analyses: import("./performance-analyzer").ComponentAnalysis[];
summary: import("./performance-analyzer").ProjectSummary;
reportPath: string;
}>;
component(componentPath: string): Promise<import("./performance-analyzer").ComponentAnalysis>;
report(projectPath?: string, outputPath?: string): Promise<{
analyses: import("./performance-analyzer").ComponentAnalysis[];
summary: import("./performance-analyzer").ProjectSummary;
reportPath: string;
}>;
help(): void;
};
export { commands };
//# sourceMappingURL=cli.d.ts.map