UNPKG

hk-bus-eta-skpracta

Version:

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

9 lines (8 loc) 271 B
import type { Eta, RouteListEntry } from "./type"; interface fetchEtasProps { route: RouteListEntry["route"]; language: "zh" | "en"; stopId: string; } export default function fetchEtas({ stopId, route, language, }: fetchEtasProps): Promise<Eta[]>; export {};