add work in progress code to get data for etas

This commit is contained in:
2024-12-23 14:50:38 -08:00
parent 7a50bec048
commit bacad935a5
3 changed files with 35 additions and 5 deletions

View File

@@ -41,10 +41,11 @@ export interface IEta {
}
export interface IOrderedStop {
nextStop?: IOrderedStop,
previousStop?: IOrderedStop,
nextStop?: IOrderedStop;
previousStop?: IOrderedStop;
routeId: string;
stopId: string;
position: number;
}
/**