UNPKG

@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

23 lines 721 B
import { BrowserManager } from './browser-manager'; export interface LighthouseResult { performance: number; accessibility: number; bestPractices: number; seo: number; metrics: { firstContentfulPaint: number; largestContentfulPaint: number; firstInputDelay: number; cumulativeLayoutShift: number; totalBlockingTime: number; speedIndex: number; }; opportunities: any[]; diagnostics: any[]; } export declare class LighthouseIntegration { private browserManager; constructor(browserManager: BrowserManager); runLighthouse(url: string, options?: any): Promise<LighthouseResult>; } //# sourceMappingURL=lighthouse-integration.d.ts.map