update OrderedStop data schema type and test loader method

This commit is contained in:
2024-12-22 19:43:06 -08:00
parent f072e4e862
commit c40dafc3ee
2 changed files with 32 additions and 31 deletions

View File

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