clarify functionality gap by to-do

This commit is contained in:
2025-01-07 14:49:22 -08:00
parent f6e62cc5e2
commit 3d033eaa58

View File

@@ -1,8 +1,6 @@
import { GetterRepository } from "./GetterRepository";
import { IEta, IOrderedStop, IRoute } from "../entities/entities";
// TODO: implement
interface ApiBasedRepositoryCache {
etasForShuttleId: {
[shuttleId: string]: IEta[],
@@ -39,6 +37,7 @@ export class ApiBasedRepository implements GetterRepository {
return [];
}
// TODO: migrate rest of logic over to this class
public async getOrderedStopByRouteAndStopId(routeId: string, stopId: string): Promise<| null> {
return null;
}