Skip to content

Commit

Permalink
fix: make nullable impact properties have nullable types to match API…
Browse files Browse the repository at this point in the history
… docs (#1477)
  • Loading branch information
dbjorge authored and stephenmathieson committed Apr 5, 2019
1 parent b1e766a commit efaed91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions axe.d.ts
Expand Up @@ -65,13 +65,13 @@ declare namespace axe {
help: string;
helpUrl: string;
id: string;
impact: ImpactValue;
impact?: ImpactValue;
tags: TagValue[];
nodes: NodeResult[];
}
interface NodeResult {
html: string;
impact: ImpactValue;
impact?: ImpactValue;
target: string[];
any: CheckResult[];
all: CheckResult[];
Expand Down

0 comments on commit efaed91

Please sign in to comment.