@casoon/auditmysite
Version:
A comprehensive command-line tool for automated accessibility, security, performance, and SEO testing using Playwright and pa11y, based on sitemap URLs
21 lines • 652 B
TypeScript
import { TestSummary } from '../types';
export interface OutputOptions {
format: 'json' | 'csv' | 'markdown' | 'html';
outputFile?: string;
includeDetails?: boolean;
includePa11yIssues?: boolean;
summaryOnly?: boolean;
}
export declare class OutputGenerator {
/**
* Generiert eine KI-freundliche Output-Datei
*/
generateOutput(summary: TestSummary, options: OutputOptions): Promise<string>;
private prepareOutputData;
private generateJSON;
private generateCSV;
private generateMarkdown;
private generateHTML;
private generateRecommendations;
}
//# sourceMappingURL=output-generator.d.ts.map