UNPKG

hk-bus-eta

Version:

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

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