Skip to content

Commit

Permalink
fix(typedefs): do not require brand and application (#1264)
Browse files Browse the repository at this point in the history
We don't always set both. For example, see [axe-webdriverjs](https://github.com/dequelabs/axe-webdriverjs/blob/v2.0.1/lib/axe-injector.js#L28).



## Reviewer checks

**Required fields, to be filled out by PR reviewer(s)**
- [ ] Follows the commit message policy, appropriate for next version
- [ ] Has documentation updated, a DU ticket, or requires no documentation change
- [ ] Includes new tests, or was unnecessary
- [ ] Code is reviewed for security by: << Name here >>
  • Loading branch information
stephenmathieson committed Nov 28, 2018
1 parent c02a5a2 commit 59465dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions axe.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ declare namespace axe {
}
interface Spec {
branding?: {
brand: string;
application: string;
brand?: string;
application?: string;
};
reporter?: ReporterVersion;
checks?: Check[];
Expand Down

0 comments on commit 59465dc

Please sign in to comment.