@casoon/auditmysite
Version:
Professional website analysis suite with robust accessibility testing, Core Web Vitals performance monitoring, SEO analysis, and content optimization insights. Features isolated browser contexts, retry mechanisms, and comprehensive API endpoints for profe
25 lines • 807 B
TypeScript
import { TestSummary } from '../types';
export interface HtmlReportOptions {
outputDir?: string;
includeCharts?: boolean;
theme?: 'light' | 'dark' | 'auto';
}
export declare class HtmlReportGenerator {
private template;
constructor();
private loadTemplate;
generateHtmlReport(summary: TestSummary, options?: HtmlReportOptions): Promise<string>;
private generateHtmlContent;
private generateIssuesTable;
private generatePerformanceTable;
private generateSeoTable;
private generateMobileFriendlinessTable;
private generateMobileOverview;
private generateMobileDetails;
private getScoreClass;
private getScoreGrade;
private getPageName;
private escapeHtml;
private formatDuration;
}
//# sourceMappingURL=html-report-generator.d.ts.map