Define a set of interfaces for the ETA repository

This commit is contained in:
2025-11-11 10:51:34 -08:00
parent 41bea7b693
commit 1783d5f6f7
3 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { ETAGetterRepository } from "./ETAGetterRepository";
export interface SelfUpdatingETARepository extends ETAGetterRepository {
/**
* Attach a event listener to the shuttle repository, listening to
* shuttle updates
*/
startListeningForUpdates(): void;
}