bahnui/back/node_modules/hafas-client/format/stop-req.js
2024-11-15 23:23:46 +01:00

14 lines
209 B
JavaScript

const formatStopReq = (ctx, stopRef) => {
return {
// todo: there's also `StationDetails`, are there differences?
meth: 'LocDetails',
req: {
locL: [stopRef],
},
};
};
export {
formatStopReq,
};