UNPKG

hk-bus-eta-skpracta

Version:

Query the ETA (Estimated Time of Arrival) of HK Bus/Minibus/MTR/Lightrail (skpracta flavored)

10 lines (9 loc) 306 B
import type { Eta, RouteListEntry } from "./type"; interface fetchEtasProps { route: RouteListEntry["route"]; bound: RouteListEntry["bound"]["ctb"]; stopId: string; seq: number; } export default function fetchEtas({ stopId, route, bound, seq, }: fetchEtasProps): Promise<Eta[]>; export {};