From db3ed4058c1a871f17daaa89f1f0badda134a4db Mon Sep 17 00:00:00 2001 From: Stephen Mathieson Date: Thu, 28 Jun 2018 06:14:52 -0400 Subject: [PATCH] fix(axe.d.ts): correct `Check.evaluate` and `Check.after` types (#976) * fix(axe.d.ts): correct `Check.evaluate` and `Check.after` types These types may either be a string or a function. Closes #974 * ci: trigger build --- 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