UNPKG

ojp-sdk-legacy

Version:

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

10 lines (9 loc) 456 B
export type UseRealtimeDataEnumeration = 'full' | 'explanatory' | 'none'; 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>; }