UNPKG

@qualweb/act-rules

Version:

ACT rules module for qualweb web accessibility evaluator

15 lines 331 B
import { Verdict } from '@qualweb/core/evaluation'; export type RuleResult = { [verdict in Verdict]: { title: string; code: string; }; }; export type ElementResult = { [code: string]: { title: string; code: string; verdict?: Verdict; }; }; //# sourceMappingURL=types.d.ts.map