Black Trigram (흑괘) - Korean Martial Arts Combat Simulator API - v0.7.11
    Preparing search index...

    Interface WCAGComplianceResult

    WCAG compliance check result

    interface WCAGComplianceResult {
        compliant: boolean;
        criteria: {
            ariaLabels: boolean;
            colorContrast: boolean;
            errorIdentification: boolean;
            focusVisible: boolean;
            keyboardAccessible: boolean;
            semanticHTML: boolean;
        };
        issues: readonly string[];
        level: WCAGLevel;
    }
    Index

    Properties

    compliant: boolean

    Whether component meets target level

    criteria: {
        ariaLabels: boolean;
        colorContrast: boolean;
        errorIdentification: boolean;
        focusVisible: boolean;
        keyboardAccessible: boolean;
        semanticHTML: boolean;
    }

    Specific criteria results

    issues: readonly string[]

    Issues found

    level: WCAGLevel

    Compliance level achieved