From 0684db8979848222f70b5941f756c0ee8810846d Mon Sep 17 00:00:00 2001 From: Stephen Mathieson Date: Wed, 27 Jun 2018 11:29:48 -0400 Subject: [PATCH 1/2] fix(axe.d.ts): correct `Check.evaluate` and `Check.after` types These types may either be a string or a function. Closes #974 --- axe.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/axe.d.ts b/axe.d.ts index cd78b82ca8..852817f6ac 100644 --- a/axe.d.ts +++ b/axe.d.ts @@ -83,8 +83,8 @@ declare module axe { } interface Check { id: string, - evaluate: Function, - after?: Function, + evaluate: Function | string, + after?: Function | string, options?: any, matches?: string, enabled?: boolean From 98f8457f1c168490c3016d9ee5814280dc9ecc17 Mon Sep 17 00:00:00 2001 From: Stephen Mathieson Date: Wed, 27 Jun 2018 13:49:43 -0400 Subject: [PATCH 2/2] ci: trigger build