make next and previous stop ids optional

This commit is contained in:
2024-12-22 19:37:38 -08:00
parent bf967c8cb8
commit f072e4e862

View File

@@ -41,8 +41,8 @@ export interface IEta {
}
export interface IOrderedStop {
nextStopId: string;
previousStopId: string;
nextStopId?: string;
previousStopId?: string;
routeId: string;
stopId: string;
}