UNPKG

mobility-toolbox-js

Version:

Toolbox for JavaScript applications in the domains of mobility and logistics.

15 lines (10 loc) 515 B
import { Paths as Routing } from './routing'; import { Paths as Stops } from './stops'; export * from './common'; export * from './ol'; export * from './realtime'; export type RealtimeVersion = '1' | '2'; export type RoutingParameters = Routing['/']['get']['parameters']['query']; export type RoutingResponse = Routing['/']['get']['responses']['200']['schema']; export type StopsParameters = Stops['/']['get']['parameters']['query']; export type StopsResponse = Stops['/']['get']['responses']['200']['schema'];