fix incorrect inheritance for IOrderedStop

This commit is contained in:
2025-01-08 16:13:46 -08:00
parent 90f9710a8e
commit 97c3376cf7

View File

@@ -41,7 +41,7 @@ export interface IEta extends IEntityWithOptionalTimestamp {
stopId: string;
}
export interface IOrderedStop extends IEntityWithId, IEntityWithOptionalTimestamp {
export interface IOrderedStop extends IEntityWithOptionalTimestamp {
nextStop?: IOrderedStop;
previousStop?: IOrderedStop;
routeId: string;