From 417f5724112e46f128efd5f56da9f891bf1e938c Mon Sep 17 00:00:00 2001 From: Michael <45568605+michael-siek@users.noreply.github.com> Date: Wed, 28 Apr 2021 16:03:29 -0400 Subject: [PATCH] fix(types): make `evaluate` check optional (#2902) --- axe.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axe.d.ts b/axe.d.ts index 899dd08412..69a9e1fc0c 100644 --- a/axe.d.ts +++ b/axe.d.ts @@ -206,7 +206,7 @@ declare namespace axe { } interface Check { id: string; - evaluate: Function | string; + evaluate?: Function | string; after?: Function | string; options?: any; matches?: string;