axe-hud API
    Preparing search index...

    Interface AuditOutcome

    The result of (attempting) an audit of the current page.

    interface AuditOutcome {
        error: Error | null;
        results: AxeResults | null;
        status: AuditStatus;
        timestamp: number;
        url: string;
    }
    Index

    Properties

    error: Error | null
    results: AxeResults | null
    status: AuditStatus
    timestamp: number

    Epoch milliseconds when the outcome was produced.

    url: string

    Page URL the audit was run against.