From c4feb7a4570580e941f35bd4ca74c68282dc1f78 Mon Sep 17 00:00:00 2001 From: cpojer Date: Sat, 31 Jan 2026 16:49:45 +0900 Subject: [PATCH] chore: Fix TypeScript errors 5/n. --- src/agents/model-scan.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/model-scan.ts b/src/agents/model-scan.ts index aba84d74a16..19aadc17db6 100644 --- a/src/agents/model-scan.ts +++ b/src/agents/model-scan.ts @@ -361,7 +361,7 @@ async function mapWithConcurrency( opts?: { onProgress?: (completed: number, total: number) => void }, ): Promise { const limit = Math.max(1, Math.floor(concurrency)); - const results = Array.from({ length: items.length }); + const results: R[] = Array.from({ length: items.length }); let nextIndex = 0; let completed = 0;