banira
    Preparing search index...

    Interface RawAxeResults

    The shape of an axe-core result we read from (a subset of axe.run's output).

    interface RawAxeResults {
        incomplete?: unknown[];
        violations?: {
            description?: string;
            help?: string;
            helpUrl?: string;
            id: string;
            impact?: string | null;
            nodes?: unknown[];
        }[];
    }
    Index

    Properties

    incomplete?: unknown[]
    violations?: {
        description?: string;
        help?: string;
        helpUrl?: string;
        id: string;
        impact?: string | null;
        nodes?: unknown[];
    }[]