From 23674d4403a7088996a758d0081b869516be4aea Mon Sep 17 00:00:00 2001 From: Stephen Mathieson Date: Thu, 4 Jun 2020 12:08:26 -0400 Subject: [PATCH] fix(types): Add "wcag21aa" and "wcag21a" to our TS definition (#2272) --- axe.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axe.d.ts b/axe.d.ts index 8df94efd27..17bc142967 100644 --- a/axe.d.ts +++ b/axe.d.ts @@ -5,7 +5,7 @@ declare namespace axe { type ImpactValue = 'minor' | 'moderate' | 'serious' | 'critical'; - type TagValue = 'wcag2a' | 'wcag2aa' | 'section508' | 'best-practice'; + type TagValue = 'wcag2a' | 'wcag2aa' | 'section508' | 'best-practice' | 'wcag21a' | 'wcag21aa'; type ReporterVersion = 'v1' | 'v2' | 'raw' | 'raw-env' | 'no-passes';