From fc642a6b87d36f4abfea142ae64e3162dceca763 Mon Sep 17 00:00:00 2001 From: Stephen Mathieson Date: Wed, 28 Nov 2018 11:07:07 -0500 Subject: [PATCH] fix(typedefs): do not require brand and application 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). --- axe.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axe.d.ts b/axe.d.ts index 7f7eea973a..285b486b75 100644 --- a/axe.d.ts +++ b/axe.d.ts @@ -91,8 +91,8 @@ declare namespace axe { } interface Spec { branding?: { - brand: string; - application: string; + brand?: string; + application?: string; }; reporter?: ReporterVersion; checks?: Check[];