UNPKG

343 BTypeScriptView Raw
1import type { Result } from 'axe-core';
2/**
3 * Formats the axe violation for human consumption
4 *
5 * @param {AxeViolation} violation
6 * @param {string | string[]} markup (optional) string of HTML relevant to the violation
7 */
8export default function formatViolation(violation: Partial<Result> | undefined, markup?: string | string[]): string;