Skip to content

Commit

Permalink
fix(types): Allow impact to be null (#2321)
Browse files Browse the repository at this point in the history
Closes #2313
  • Loading branch information
stephenmathieson authored Jun 24, 2020
1 parent e207190 commit 757aacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion axe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Definitions by: Marcy Sutton <https://github.com/marcysutton>

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';

Expand Down

0 comments on commit 757aacd

Please sign in to comment.