From b1747540097eea8b5baceadbc5bac3749b3fb282 Mon Sep 17 00:00:00 2001 From: Michael Goodnow Date: Thu, 28 Dec 2023 23:10:30 -0500 Subject: [PATCH] add types --- src/pipeline.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipeline.ts b/src/pipeline.ts index ffd6f1267..a154f4dfd 100755 --- a/src/pipeline.ts +++ b/src/pipeline.ts @@ -65,8 +65,8 @@ async function assessCandidates( candidates: Candidate[], searchee: Searchee, hashesToExclude: string[] -) { - const assessments = []; +): Promise { + const assessments: AssessmentWithTracker[] = []; for (const result of candidates) { const assessment = await assessCandidate( result,