UNPKG

pulse-dashboard

Version:

A Next.js Dashboard application for real-time monitoring and historical analysis of Playwright test executions, based on playwright-pulse-report. This component provides the UI for visualizing Playwright test results and can be run as a standalone CLI too

11 lines 372 B
import * as React from 'react'; import type { HistoricalTrend } from '@/types/playwright.js'; interface TrendAnalysisProps { trends: HistoricalTrend[]; loading: boolean; error: string | null; currentResults?: any[]; } export declare const TrendAnalysis: React.NamedExoticComponent<TrendAnalysisProps>; export {}; //# sourceMappingURL=TrendAnalysis.d.ts.map