mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 07:09:35 +02:00
13 lines
204 B
JavaScript
13 lines
204 B
JavaScript
const formatStopReq = (ctx, stopRef) => {
|
|
return {
|
|
// todo: there's also `StationDetails`, are there differences?
|
|
meth: 'LocDetails',
|
|
req: {
|
|
locL: [stopRef]
|
|
}
|
|
}
|
|
}
|
|
|
|
export {
|
|
formatStopReq,
|
|
}
|