@stacksleuth/cli
Version:
Comprehensive command-line interface for StackSleuth - Interactive dashboard, real-time monitoring, performance reports, CI/CD integration, and automated performance optimization recommendations.
17 lines • 463 B
TypeScript
import { TraceCollector } from '@stacksleuth/core';
interface ReportOptions {
format: 'json' | 'csv';
output?: string;
last?: string;
}
export declare class ReportCommand {
private collector;
constructor(collector: TraceCollector);
execute(options: ReportOptions): Promise<void>;
private parseTimeRange;
private generateReport;
private generateSummary;
private showSummary;
}
export {};
//# sourceMappingURL=report.d.ts.map