From a53516bfe6223e1333af467001c0f9b8dcaa6e30 Mon Sep 17 00:00:00 2001 From: Tyler Date: Wed, 10 Jun 2026 12:49:16 -0600 Subject: [PATCH] Fix TypeScript return type in import-tuxedo-stops.ts Add missing 'locations' property to loadStops() return type. --- scripts/import-tuxedo-stops.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/import-tuxedo-stops.ts b/scripts/import-tuxedo-stops.ts index 413807a..edb3462 100644 --- a/scripts/import-tuxedo-stops.ts +++ b/scripts/import-tuxedo-stops.ts @@ -76,7 +76,7 @@ function slugify(s: string): string { return out.replace(/^-+|-+$/g, ""); } -async function loadStops(xlsxPath: string): Promise<{ stops: ParsedStop[]; skipped: Record; dirCount: number }> { +async function loadStops(xlsxPath: string): Promise<{ stops: ParsedStop[]; skipped: Record; dirCount: number; locations: ParsedLocation[] }> { const wb = new ExcelJS.Workbook(); await wb.xlsx.readFile(xlsxPath);