Remove the delta argument in ShuttleGetterRepository.getArrivedStopIfExists

This commit is contained in:
2025-11-20 19:07:30 -08:00
parent 37fbc3ef45
commit f34f78aaea

View File

@@ -109,5 +109,5 @@ export interface ShuttleGetterRepository extends EventEmitter {
* @param shuttle
* @param delta - The coordinate delta tolerance (default 0.001)
*/
getArrivedStopIfExists(shuttle: IShuttle, delta?: number): Promise<IStop | undefined>;
getArrivedStopIfExists(shuttle: IShuttle): Promise<IStop | undefined>;
}