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);