Skip to content

Commit efaed91

Browse files
dbjorgestephenmathieson
authored andcommitted
fix: make nullable impact properties have nullable types to match API docs (#1477)
1 parent b1e766a commit efaed91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

axe.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,13 @@ declare namespace axe {
6565
help: string;
6666
helpUrl: string;
6767
id: string;
68-
impact: ImpactValue;
68+
impact?: ImpactValue;
6969
tags: TagValue[];
7070
nodes: NodeResult[];
7171
}
7272
interface NodeResult {
7373
html: string;
74-
impact: ImpactValue;
74+
impact?: ImpactValue;
7575
target: string[];
7676
any: CheckResult[];
7777
all: CheckResult[];

0 commit comments

Comments
 (0)