From 46c1330d3d362d1ba91403f1cdec83ba3e3bd95d Mon Sep 17 00:00:00 2001 From: Steven Lambert Date: Mon, 26 Jul 2021 10:50:06 -0600 Subject: [PATCH] fix(axe.d.ts): fix finishRun types --- axe.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/axe.d.ts b/axe.d.ts index 066bf7c377..9d50626755 100644 --- a/axe.d.ts +++ b/axe.d.ts @@ -333,7 +333,7 @@ declare namespace axe { * @param {RunOptions} options Optional Options passed into rules or checks, temporarily modifying them. */ function finishRun( - partialResults: PartialResult[], + partialResults: Array, options: RunOptions ): Promise;