UNPKG

ojp-sdk-legacy

Version:

OJP (Open Journey Planner) Javascript SDK (legacy version)

9 lines (8 loc) 382 B
export type FareClassType = 'firstClass' | 'secondClass'; export type OccupancyLevel = 'unknown' | 'manySeatsAvailable' | 'fewSeatsAvailable' | 'standingRoomOnly'; export type MapFareClassOccupancy = Record<FareClassType, OccupancyLevel | null>; export interface XML_Config { ojpVersion: '1.0' | '2.0'; defaultNS: 'ojp' | 'siri' | null; mapNS: Record<string, string>; }