UNPKG

@presidio-dev/factifai-agent

Version:

An AI powered browser automation testing agent powered by LLMs.

34 lines 930 B
/** * Display components for report visualization */ export declare const displayComponents: { /** * Display header for the report */ displayReportHeader(): void; /** * Display the summary report box */ displaySummaryReport(report: any, updatedTestSteps: any[]): void; /** * Display test results in a beautiful table */ displayTestResultsTable(testSteps: any[]): void; /** * Display an error box */ displayErrorBox(lastError: string, errorAnalysis?: string | null): void; /** * Display recommendations box */ displayRecommendations(recommendations: string[]): void; /** * Display critical issues box */ displayCriticalIssues(criticalIssues: string[]): void; /** * Display report generation error box */ displayReportGenerationError(error: any): void; }; //# sourceMappingURL=display-components.d.ts.map