From f072e4e862e46bcf6fe8f55a5c05f25e79443eb7 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Sun, 22 Dec 2024 19:37:38 -0800 Subject: [PATCH] make next and previous stop ids optional --- src/repository.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/repository.ts b/src/repository.ts index 51114b4..657c43b 100644 --- a/src/repository.ts +++ b/src/repository.ts @@ -41,8 +41,8 @@ export interface IEta { } export interface IOrderedStop { - nextStopId: string; - previousStopId: string; + nextStopId?: string; + previousStopId?: string; routeId: string; stopId: string; }