@golemio/pid
Version:
Golemio PID Module
12 lines (11 loc) • 356 B
TypeScript
export declare enum MetroRouteName {
LINE_A = "A",
LINE_B = "B",
LINE_C = "C"
}
export declare class MetroRouteHelper {
private static tripToRouteMetroMap;
static getRouteId(routeName: MetroRouteName | string): string | undefined;
static getTripRouteMap(): Record<string, string>;
static getRouteName(tripId: string): string;
}