UNPKG

arela

Version:

AI-powered CTO with multi-agent orchestration, code summarization, visual testing (web + mobile) for blazing fast development.

19 lines 481 B
import { Page } from 'playwright'; interface RuleIssue { severity: 'critical' | 'warning' | 'info'; category: 'wcag' | 'ux' | 'performance'; message: string; suggestion: string; element?: string; } interface RuleResult { issues: RuleIssue[]; scores: { wcag: number; ux: number; performance: number; }; } export declare function analyzeWithRules(page: Page): Promise<RuleResult>; export {}; //# sourceMappingURL=rules.d.ts.map