From 757aacd9716dc8a606f23807a5e8fe6a5474fbee Mon Sep 17 00:00:00 2001 From: Stephen Mathieson Date: Wed, 24 Jun 2020 11:05:06 -0400 Subject: [PATCH] fix(types): Allow `impact` to be `null` (#2321) Closes #2313 --- axe.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axe.d.ts b/axe.d.ts index 88bc95a725..d6f55278a0 100644 --- a/axe.d.ts +++ b/axe.d.ts @@ -3,7 +3,7 @@ // Definitions by: Marcy Sutton declare namespace axe { - type ImpactValue = 'minor' | 'moderate' | 'serious' | 'critical'; + type ImpactValue = 'minor' | 'moderate' | 'serious' | 'critical' | null; type TagValue = 'wcag2a' | 'wcag2aa' | 'section508' | 'best-practice' | 'wcag21a' | 'wcag21aa';